source: branches/htmlform/templates/confirm.tmpl@ 461

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

/branches/htmlform

Checkpoint - confirm.html almost completely converted to template.
Still need to fix up allocfrom (see ##fixme at line 790 in main.cgi).
See #3.

File size: 2.1 KB
Line 
1<div class="heading">Please confirm</div>
2<div class="indent">
3<table class="regular" cellspacing="1" cellpadding="1">
4
5<tr class="row0">
6<td>CIDR block to be allocated:</td>
7<td><TMPL_VAR NAME=cidr></td>
8</tr>
9
10<tr class="row1">
11<td>Block allocation is taken from:</td>
12<td><TMPL_VAR NAME=alloc_from></td>
13</tr>
14
15<tr class="row0">
16<td>City:</td>
17<td><TMPL_VAR NAME=city></td>
18</tr>
19
20<tr class="row1">
21<td>Demarc switch/wifi tower:</td>
22<td><TMPL_VAR NAME=nodename></td>
23</tr>
24
25<tr class="row0">
26<td>Allocation type:</td>
27<td><TMPL_VAR NAME=typefull></td>
28</tr>
29
30<tr class="row1">
31<td>Customer ID:</td>
32<td><TMPL_VAR NAME=custid></td>
33</tr>
34
35<tr class="row0">
36<td valign="top">Circuit ID:</td>
37<td><TMPL_VAR NAME=circid></td>
38</tr>
39
40<tr class="row1">
41<td valign="top">Description/name:</td>
42<td><TMPL_VAR NAME=desc></td>
43</tr>
44
45<tr class="row0">
46<td valign="top">Notes:</td>
47<td><TMPL_VAR NAME=notes></td>
48</tr>
49
50<TMPL_IF privdata>
51<tr class="row1">
52<td>Restricted data:</td>
53<td><TMPL_VAR NAME=privdata></td>
54</tr>
55</TMPL_IF>
56
57<!-- warn -->
58<tr class="<TMPL_IF privdata>row0<TMPL_ELSE>row1</TMPL_IF>">
59<td class="center" colspan="2">
60<form method="POST" action="main.cgi" class="regular">
61<fieldset><legend></legend>
62<input type="hidden" name="fullcidr" value="<TMPL_VAR NAME=cidr>">
63<input type="hidden" name="city" value="<TMPL_VAR NAME=city>">
64<input type="hidden" name="node" value="<TMPL_VAR NAME=nodeid>">
65<input type="hidden" name="alloctype" value="<TMPL_VAR NAME=alloc_type>">
66<input type="hidden" name="custid" value="<TMPL_VAR NAME=custid>">
67<input type="hidden" name="circid" value="<TMPL_VAR NAME=circid>">
68<input type="hidden" name="desc" value="<TMPL_VAR NAME=desc>">
69<input type="hidden" name="notes" value="<TMPL_VAR NAME=notes>">
70<TMPL_IF privdata>
71<input type="hidden" name="privdata" value="<TMPL_VAR NAME=privdata>">
72</TMPL_IF>
73<TMPL_IF billinguser>
74<input type="hidden" name="billinguser" value="<TMPL_VAR NAME=billinguser>">
75</TMPL_IF>
76<input type="hidden" name="action" value="<TMPL_VAR NAME=action>">
77<input type="button" value="Back" onclick="history.go(-1)"><input type="submit" value="Confirm">
78</fieldset>
79</form>
80</td></tr>
81</table>
82</div>
Note: See TracBrowser for help on using the repository browser.