source: django_templates/exodus_01/node_list.html@ 6173

Last change on this file since 6173 was 6173, checked in by roland, 17 years ago

move of old exodues code

File size: 726 bytes
Line 
1{% extends "exodus_template.html" %}
2
3{% block content %}
4
5<P class="blue"> Node List </P>
6
7{% if object_list %}
8 <table border="3" cellpadding="1">
9 {% for object in object_list %}
10 <tr>
11 <td class="list" ><a class="list"href=../{{ object.id }}/node/> {{ object.name }} </a><td>
12 <td><a href=../{{ object.id }}/dhcpd.conf/>dhcpd.conf</a></td>
13 <td><a href=../{{ object.id }}/named.conf/>named.conf</a></td>
14 <td><a href=../{{ object.id }}/rc.node.local/>rc.node.local</a></td>
15 <td><a href=../{{ object.id }}/resolve.conf/>resolv.conf</a></td>
16 </tr>
17
18 {% endfor %}
19 </table>
20{% else %}
21 <p class="blue"> No nodes are available </p>
22{% endif %}
23
24{% endblock %}
25
Note: See TracBrowser for help on using the repository browser.