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

Last change on this file since 6192 was 6192, checked in by RIck van der Zwet, 17 years ago
  • Fixed linking to various config files
  • Initial dhcpd file attempt
File size: 735 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=../{{ object.name }}/dhcpd.conf/>dhcpd.conf</a></td>
13 <td><a href=../{{ object.name }}/named.conf/>named.conf</a></td>
14 <td><a href=../{{ object.name }}/rc.node.local/>rc.node.local</a></td>
15 <td><a href=../{{ object.name }}/resolv.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.