source: trunk/templates/delete.tmpl@ 589

Last change on this file since 589 was 589, checked in by Kris Deugau, 11 years ago

/trunk

Tweak and fiddle allocation delete stage 1 for rDNS. See #1.
Note the autosetting of the "Remove forward entry?" checkbox
needs to be reviewed and tweaked further, probably.

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