source: branches/htmlform/templates/admin/tweakpool.tmpl@ 487

Last change on this file since 487 was 487, checked in by Kris Deugau, 14 years ago

/branches/htmlform

Finish IP pool tweaking
Complete email notice configuration
Finish most of block allocation
Add generic error page
Fix admin header with reference to Javascript bits
See #3, #15, #26

File size: 1.3 KB
Line 
1Listing pool <TMPL_VAR NAME=pool>:
2<form action="admin.cgi" method="POST">
3<fieldset><legend></legend>
4<input type="hidden" name="action" value="updatepool">
5<table border="1">
6<tr><td align="right">Customer ID:</td><td><input name="custid"></td></tr>
7<tr><td align="right">Customer location:</td><td><input name="city"></td></tr>
8<tr><td align="right">Type:</td><td><select name="type"><option selected>-</option>
9<TMPL_LOOP name=typelist><option value="<TMPL_VAR NAME=type>"><TMPL_VAR NAME=dispname></option>
10</TMPL_LOOP>
11</select></td></tr>
12<tr><td align="right">Available?</td><td><input type="checkbox" value="y"></td></tr>
13<tr><td align="right">Description/name:</td><td><input name="desc" size="40"></td></tr>
14<tr><td align="right">Notes:</td><td><textarea name="notes" rows="3" cols="40"></textarea></td></tr>
15<tr><td colspan=2 align=center><input type=submit value="Update"></td></tr>
16</table>
17Update the following record:
18<table border=1>
19<TMPL_LOOP NAME=iplist>
20<tr><td><input type="radio" name="ip" value="<TMPL_VAR NAME=ip>"><TMPL_VAR NAME=ip></td>
21<td><TMPL_VAR NAME=custid></td><td><TMPL_VAR NAME=city></td><td><TMPL_VAR NAME=type></td>
22<td><TMPL_VAR NAME=avail></td><td><TMPL_VAR NAME=desc></td><td><TMPL_VAR NAME=notes></td></tr>
23</TMPL_LOOP>
24</table>
25</fieldset></form>
Note: See TracBrowser for help on using the repository browser.