source: exodus/templates/node-list.html@ 6283

Last change on this file since 6283 was 6283, checked in by RIck van der Zwet, 17 years ago
  • First attempt of new URL styles, removed number of fixed references
  • made initial setup of edit functionality at Node Style.
File size: 823 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="{% url node-detail object.name %}">{{ object.name }}</a></td>
12 <td><a href="{% url exodus.views.conf_dhcpd_conf object.name %}">dhcpd.conf</a></td>
13 <td><a href="{% url exodus.views.conf_named_conf object.name %}">named.conf</a></td>
14 <td><a href="{% url exodus.views.conf_rc_node_local object.name %}">rc.node.local</a></td>
15 <td><a href="{% url exodus.views.conf_resolv_conf object.name %}">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.