|
Revision 11092, 0.9 KB
(checked in by edent, 14 months ago)
|
|
add ports and ip when loading node
|
-
Property svn:executable set to
*
|
| Rev | Line | |
|---|
| [11092] | 1 | <!--Make a table of floors versus nodes--> |
|---|
| 2 | |
|---|
| [10785] | 3 | <table border="1"> |
|---|
| 4 | <tr> |
|---|
| 5 | <th>Nodes</th> |
|---|
| 6 | {% for count in number_of_nodes %} |
|---|
| 7 | <th>{{count}}</th> |
|---|
| 8 | {% endfor %} |
|---|
| 9 | </tr> |
|---|
| 10 | {% for floor in floor_list %} |
|---|
| 11 | <tr> |
|---|
| 12 | <th>Floor {{forloop.counter}}</th> |
|---|
| 13 | {% for node in floor %} |
|---|
| 14 | {% if node %} |
|---|
| [11092] | 15 | <!--<td><a id="node" href="javascript:loadNode({{node}});" title="{{forloop.parentloop.counter}}-{{forloop.counter}}"><img src="{{STATIC_URL}}green_ball.gif"/></a></td>--> |
|---|
| 16 | <td><a id="node" href='javascript:loadHrefToDiv("#directory","{{MEDIA_URL}}/loadNode/{{forloop.parentloop.counter}}/{{node}}/");' title="{{forloop.parentloop.counter}}-{{forloop.counter}}" onclick=''><img src="{{STATIC_URL}}green_ball.gif"/></a></td> |
|---|
| [10785] | 17 | {% else %} |
|---|
| [10914] | 18 | <td><img title="{{forloop.parentloop.counter}}-{{forloop.counter}}" src="{{STATIC_URL}}grey_ball.gif"/></td> |
|---|
| [10785] | 19 | {% endif %} |
|---|
| 20 | {% endfor %} |
|---|
| 21 | </tr> |
|---|
| 22 | {% endfor %} |
|---|
| 23 | |
|---|
| 24 | </table> |
|---|