source: trunk/templates/delete.tmpl@ 878

Last change on this file since 878 was 878, checked in by Kris Deugau, 8 years ago

/trunk

Using "Reverse DNS" has caused a bit of confusion; change the primary
label on the allocation detail pages to "DNS name/pattern". Keep "reverse"
elsewhere since that's the link point into the DNS records.

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