source: branches/stable/templates/admin/listcust.tmpl@ 593

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

/branches/stable

Merge /trunk r517 (merge /branches/htmlform)
Conflicts all resolved towards /trunk.
Fix a minor syntax error with "while (@data..." -> "while (my @data..."
(may cause merge conflicts later)

File size: 754 bytes
Line 
1Add new entry:
2<form action="admin.cgi" method="POST">
3<fieldset><legend class="noshow">&nbsp;</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.