summaryrefslogtreecommitdiffstats
path: root/src/lib/Server/Hostbase/hostbase/webtemplates/edit.html
blob: 0785b64e87befb871327ea2ca3436754c679a73a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
{% extends "base.html" %}

{% block pagebanner %}
  <div class="header">
      <h2>{{ host.hostname }}</h2>
  </div>
  <br/>
{% endblock %}

{% block sidebar %}
{% include "navbar" %}
<ul class="sidebar">
<li><a href="/hostbase/{{ host.id }}/" class="sidebar">host info</a></li>
<li><a href="/hostbase/{{ host.id }}/dns/" class="sidebar">detailed dns info</a></li>
<li><a href="/hostbase/{{ host.id }}/dns/edit/" class="sidebar">edit dns info</a></li>
</ul>
{% endblock %}

{% block content %}

<script language=JavaScript type=text/Javascript>
function toggleAddr(interface_id){
   if(document.getElementById){
      var style = document.getElementById('ipaddr'+interface_id).style;
      style.display = style.display? "":"block";
   }
}
function toggleInter(){
   if(document.getElementById){
      var style = document.getElementById('interface').style;
      style.display = style.display? "":"block";
   }
}
</script>

<style type=text/css>
{% for interface in interfaces %}
div#ipaddr{{ interface.0.id }}{
   display: none;
}
{% endfor %}
div#interface{
   display: none;
}
</style>

<form name="hostdata" action="?sub=true" method="post">
<input type="hidden" name="host" value="{{ host.id }}">
<table border="0" width="100%">
   <colgroup>
   <col width="150">
   <col width="*">
   <tr> <td> <b>hostname</b></td>
   <td> <input name="hostname" value="{{ host.hostname }}"></td></tr>
   <tr> <td> <b>whatami</b></td>
   <td> 
   <select name="whatami">
   {% for choice in host.WHATAMI_CHOICES %}
       {% ifequal host.whatami choice.0 %}
           <option value="{{ choice.0 }}" selected="selected">{{ choice.1 }}
       {% else %}
           <option value="{{ choice.0 }}">{{ choice.1 }}
       {% endifequal %}
   {% endfor %}
   </select></td></tr>
   <tr> <td> <b>netgroup</b></td>
   <td>
   <select name="netgroup">
   {% for choice in host.NETGROUP_CHOICES %}
       {% ifequal host.netgroup choice.0 %}
           <option value="{{ choice.0 }}" selected="selected">{{ choice.1 }}
       {% else %}
           <option value="{{ choice.0 }}">{{ choice.1 }}
       {% endifequal %}
   {% endfor %}
   </select>
   </td></tr>
   <tr> <td> <b>class</b></td>
   <td>
   <select name="security_class">
   {% for choice in host.CLASS_CHOICES %}
       {% ifequal host.security_class choice.0 %}
           <option value="{{ choice.0 }}" selected="selected">{{ choice.1 }}
       {% else %}
           <option value="{{ choice.0 }}">{{ choice.1 }}
       {% endifequal %}
   {% endfor %}
   </select></td></tr>
   <tr> <td> <b>support</b></td>
   <td>
   <select name="support">
   {% for choice in host.SUPPORT_CHOICES %}
       {% ifequal host.support choice.0 %}
           <option value="{{ choice.0 }}" selected="selected">{{ choice.1 }}
       {% else %}
           <option value="{{ choice.0 }}">{{ choice.1 }}
       {% endifequal %}
   {% endfor %}
   </select></td></tr>
   <tr> <td> <b>csi</b></td>
   <td> <input name="csi" type="text" value="{{ host.csi }}"></td></tr>
   <tr> <td> <b>printq</b></td>
   <td> <input name="printq" type="text" value="{{ host.printq }}"></td></tr>
   <tr> <td> <b>dhcp</b></td>
   <td>
   {% if host.dhcp %}
       <input type="checkbox" checked="checked" name="dhcp"></td></tr>
   {% else %}
       <input type="checkbox" name="dhcp"></td></tr>
   {% endif %}   
   <tr> <td> <b>outbound_smtp</b></td>
   <td>
   {% if host.outbound_smtp %}
       <input type="checkbox" checked="checked" name="outbound_smtp"></td></tr>
   {% else %}
       <input type="checkbox" name="outbound_smtp"></td></tr>
   {% endif %}   
   <tr> <td> <b>primary_user</b></td>
   <td> <input name="primary_user" type="text" size="32" value="{{ host.primary_user }}"></td></tr>
   <tr> <td> <b>administrator</b></td>
   <td> <input name="administrator" type="text" size="32" value="{{ host.administrator }}"></td></tr>
   <tr> <td> <b>location</b></td>
   <td> <input name="location" type="text" value="{{ host.location }}"></td></tr>
   <tr> <td> <b>expiration_date</b></td>
   <td> <input name="expiration_date" type="text" value="{{ host.expiration_date }}"> YYYY-MM-DD</td></tr>
   {% for interface in interfaces %}
       <tr> <td><br><b>Interface</b>
       </td><td><br>
       {% for choice in interface.0.TYPE_CHOICES %}
           {% ifequal interface.0.hdwr_type choice.0 %}
               <input type="radio" name="hdwr_type{{ interface.0.id }}" value="{{ choice.0 }}" checked="checked">{{ choice.1 }}
           {% else %}
               <input type="radio" name="hdwr_type{{ interface.0.id }}" value="{{ choice.0 }}">{{ choice.1 }}
           {% endifequal %}
       {% endfor %}
       </td></tr>
       <tr> <td> <b>mac_addr</b></td>
       <td> <input name="mac_addr{{ interface.0.id }}" type="text" value="{{ interface.0.mac_addr }}">
       <a style="font-size:75%" href="/hostbase/{{ host.id }}/interface/{{ interface.0.id }}/confirm">remove</a>
       </td></tr>
       {% for ip in interface.1 %}
           <tr> <td> <b>ip_addr</b>
	   </td>
           <td> <input name="ip_addr{{ ip.id }}" type="text" value="{{ ip.ip_addr }}">
	   <a style="font-size:75%" href="/hostbase/{{ host.id }}/ip/{{ ip.id }}/confirm">remove
	   </a></td></tr>
       {% endfor %}

<!-- Section for adding a new IP address to an existing interface -->
<!-- By default, section is hidden -->
       </table>
       <div id=ipaddr{{ interface.0.id }}>
       <table border="0" width="100%">
           <colgroup>
           <col width="150">
           <col width="*">
           <tr> <td> <b>ip_addr</b></td>
           <td> <input name="{{ interface.0.id }}ip_addr" type="text"></td></tr>
       </table>
       </div>
       <a style="font-size:75%" href=# onclick="toggleAddr({{ interface.0.id }})">Add a New IP Address</a>
       <table border="0" width="100%">
           <colgroup>
               <col width="150">
	       <col width="*">
   {% endfor %}
<!--  End section for new IP address -->

<!-- Section for add an entirely new interface to a host -->
<!-- By default, section is hidden -->
   </table>
   <div id=interface>
   <table border="0" width="100%">
       <colgroup>
       <col width="150">
       <col width="*">
   <tr> <td><br><b>Interface</b></td><td><br>
   {% for choice in TYPE_CHOICES %}
   <input type="radio" name="hdwr_type_new" value="{{ choice.0 }}">{{ choice.1 }}
   {% endfor %}
   </td></tr>
   <tr> <td> <b>mac_addr</b></td>
   <td> <input name="mac_addr_new" type="text"></td></tr>
   <tr> <td> <b>ip_addr</b></td>
   <td> <input name="ip_addr_new" type="text"></td></tr>
</table>
</div>
<a style="font-size:75%" href=# onclick="toggleInter()">Add a New Interface</a>
<!-- End new interface section -->


<table border="0" width="100%">
   <colgroup>
   <col width="150">
   <col width="*">
<tr> <td> <b>comments</b></td>
<td> <textarea rows="10" cols="50" name="comments">{{ host.comments }}</textarea></td></tr>
</table>
<a style="font-size:75%" href="/hostbase/{{ host.id }}/dns/edit">edit detailed DNS information for this host</a>
<br>
this host is 
<select name="status">
{% for choice in host.STATUS_CHOICES %}
{% ifequal host.status choice.0 %}
<option value="{{ choice.0 }}" selected="selected">{{ choice.1 }}
{% else %}
<option value="{{ choice.0 }}">{{ choice.1 }}
{% endifequal %}
{% endfor %}
</select><br>
last update on {{ host.last }}<br>
<p><input type="submit" value="Submit">
</form>

{% endblock %}