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

Last change on this file since 6238 was 6238, checked in by RIck van der Zwet, 17 years ago

Removed absolute URL calls and converted them to relative ones

File size: 815 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.name }}/node/> {{ 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.