source: trunk/templates/delete.tmpl@ 687

Last change on this file since 687 was 687, checked in by Kris Deugau, 9 years ago

/trunk

CSS and layout cleanup, sort of. Convert tables with alternating row
colours to pure CSS (mainly to make addition of future fields, and future
*optional* or restricted-access fields, much easier). Play a little loose
with table structure to let headings and in-page "titles" continue to show
the main background colour instead of the "first line of the table" colour.

File size: 1.6 KB
Line 
1<TMPL_IF webpath></TMPL_IF>
2<br>
3<TMPL_VAR NAME=err>
4
5<form action="main.cgi" method="POST" class="regular">
6<fieldset><legend class="noshow">&nbsp;</legend>
7<table class="indent altrows" cellspacing="1" cellpadding="1">
8<tr class="heading"><td>Please confirm removal of:</td></tr>
9
10<tr>
11<td>IP block:</td>
12<td><TMPL_VAR NAME=block></td>
13</tr>
14
15<tr>
16<td>Reverse DNS pattern:</td>
17<td><TMPL_VAR NAME=rdns></td>
18</tr>
19
20<tr>
21<td>Remove associated forward DNS entry?</td>
22<td><input type="checkbox" name="delforward"<TMPL_IF autodel> checked</TMPL_IF>></td>
23</tr>
24
25<tr>
26<td>City:</td>
27<td><TMPL_VAR NAME=city></td>
28</tr>
29
30<tr>
31<td>Type:</td>
32<td><TMPL_VAR NAME=disptype></td>
33</tr>
34
35<tr>
36<td>Customer ID:</td>
37<td><TMPL_VAR NAME=custid></td>
38</tr>
39
40<tr>
41<td>Circuit ID:</td>
42<td><TMPL_VAR ESCAPE=HTML NAME=circid></td>
43</tr>
44
45<tr>
46<td valign="top">Description/Name:</td>
47<td><TMPL_VAR ESCAPE=HTML NAME=desc></td>
48</tr>
49
50<tr>
51<td valign="top">Notes:</td>
52<td><TMPL_VAR NAME=notes></td>
53</tr>
54
55<TMPL_IF privdata>
56<tr>
57<td valign="top">Restricted data:</td>
58<td><TMPL_VAR NAME=privdata></td>
59</tr>
60</TMPL_IF>
61
62<tr>
63<td colspan="2"><div class="warning">
64Warning: clicking confirm will remove this record entirely.
65<TMPL_IF delpool><br>Any IPs allocated from this pool will also be removed!</TMPL_IF>
66</div>
67</td>
68</tr>
69
70<tr>
71<td class="center" colspan="2">
72<input type="button" value="Back" onclick="history.go(-1)"><input type="submit" value="Confirm">
73<input type="hidden" name="block" value="<TMPL_VAR NAME=blockid>">
74<input type="hidden" name="basetype" value="<TMPL_VAR NAME=basetype>">
75<input type="hidden" name="action" value="finaldelete">
76</td>
77</tr>
78
79</table>
80</fieldset>
81</form>
Note: See TracBrowser for help on using the repository browser.