~ubuntu-branches/ubuntu/hardy/bcfg2/hardy-updates

« back to all changes in this revision

Viewing changes to src/lib/Server/Hostbase/hostbase/webtemplates/host.html

  • Committer: Bazaar Package Importer
  • Author(s): Sami Haahtinen
  • Date: 2006-11-16 22:39:16 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20061116223916-8dtn3t86cz58vg2x
Tags: 0.8.6.1-1
* New Upstream Release
* Replaced faulty if clause in bcfg2.postrm (Closes: #398772)

Show diffs side-by-side

added added

removed removed

Lines of Context:
8
8
{% endblock %}
9
9
 
10
10
{% block sidebar %}
11
 
<a href="/hostbase/" class="sidebar">new search</a>
 
11
{% include "navbar" %}
12
12
<ul class="sidebar">
13
13
   <li><a href="dns/" class="sidebar">detailed dns info</a></li>
14
14
   <li><a href="edit/" class="sidebar">edit host info</a></li>
15
15
   <li><a href="dns/edit/" class="sidebar">edit dns info</a></li>
16
16
</ul>
 
17
{% include "logout" %}
17
18
{% endblock %}
18
19
 
19
20
{% block content %}
36
37
   <td> {{ host.csi }}</td></tr>
37
38
   <tr> <td> <b>printq</b></td>
38
39
   <td> {{ host.printq }}</td></tr>
39
 
   <tr> <td> <b>dhcp</b></td>
40
 
   {% if host.dhcp %}
41
 
   <td> y </td></tr>
42
 
   {% else %}
43
 
   <td> n </td></tr>
44
 
   {% endif %}
45
40
   <tr> <td> <b>outbound_smtp</b></td>
46
41
   {% if host.outbound_smtp %}
47
42
   <td> y </td></tr>
61
56
   {% ifnotequal interface.0.hdwr_type 'no' %}
62
57
   <td><br>{{ interface.0.hdwr_type }}</td></tr>
63
58
   {% endifnotequal %}
 
59
   <tr> <td> <b>dhcp</b></td>
 
60
   {% if interface.0.dhcp %}
 
61
   <td> y </td></tr>
64
62
   <tr> <td> <b>mac_addr</b></td>
65
63
   <td> {{ interface.0.mac_addr }}</b></td></tr>
 
64
   {% else %}
 
65
   <td> n </td></tr>
 
66
   {% endif %}
66
67
   {% for ip in interface.1 %}
67
68
   <tr> <td> <b>ip_addr</b></td>
68
69
   <td> {{ ip.ip_addr }}</td></tr>