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

Last change on this file since 6217 was 6217, checked in by roland, 16 years ago

wrong ci directory last-commit

File size: 731 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.