source: branches/htmlform/templates/admin/listcust.tmpl@ 483

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

/branches/htmlform

Start converting admin.cgi to templates (to make removal of references to CommonWeb.pm
subs simpler; see #3, #15, #26)
Completed:

  • Main page
  • ACL error page
  • rWHOIS customer data editing - list, edit new/update, confirm update
File size: 733 bytes
Line 
1Add new entry:
2<form action="admin.cgi" method="POST">
3<fieldset><legend></legend>
4<input type="hidden" name="action" value="edcust">
5<input type="hidden" name="newcust" value="1">
6<table border="1">
7<tr>
8<td>CustID:</td><td><input name="custid"></td>
9<td align="center"><input type="submit" value="Go to edit page for this custid"></td>
10</tr>
11</table>
12</fieldset></form>
13
14<p>Click CustID to edit existing customer contact data:
15<table border="1">
16<tr><td>CustID</td><td>Name</td><td>Tech handle</td></tr>
17<TMPL_LOOP NAME=custlist>
18<tr>
19<td><a href="admin.cgi?action=edcust&amp;custid=<TMPL_VAR NAME=custid>"><TMPL_VAR NAME=custid></a></td>
20<td><TMPL_VAR NAME=custname></td>
21<td><TMPL_VAR NAME=tech></td>
22</tr>
23</TMPL_LOOP>
24</table>
Note: See TracBrowser for help on using the repository browser.