root/ossiedev/trunk/tools/cornetApps/templates/HtmlPages/grid.html @ 10785

Revision 10785, 438 bytes (checked in by edent, 23 months ago)

modify HtmlPages? app

  • Property svn:executable set to *
Line 
1<table border="1">
2        <tr>
3                <th>Nodes</th>
4                {% for count in number_of_nodes %}
5                <th>{{count}}</th>
6                {% endfor %}
7        </tr>
8        {% for floor in floor_list %}
9        <tr>
10                <th>Floor {{forloop.counter}}</th>
11                {% for node in floor %}
12                        {% if node %}
13                                <td><a href="#"><img src="{{STATIC_URL}}green_ball.gif"/></a></td>
14                        {% else %}
15                                <td><img src="{{STATIC_URL}}red_ball.gif"/></td>
16                        {% endif %}
17                {% endfor %}
18        </tr>
19        {% endfor %}
20
21</table>
Note: See TracBrowser for help on using the browser.