source: trunk/templates/domlist.tmpl@ 139

Last change on this file since 139 was 139, checked in by Kris Deugau, 13 years ago

/trunk

Reduce the abuse of "actions" as a form input name; make the
domain and user list status changes use their own custom input
names to reduce the mixups when checking "global" actions

File size: 2.4 KB
Line 
1<!-- <TMPL_VAR NAME=sid> -->
2<table class="wholepage"><tr>
3<TMPL_INCLUDE NAME="menu.tmpl">
4
5<td align="center" valign="top">
6
7 <TMPL_IF errmsg>
8 <div class='errmsg'><TMPL_VAR NAME=errmsg></div>
9 </TMPL_IF>
10
11<table width="98%">
12<tr><th colspan="3"><div class="center maintitle">Domain list</div></th></tr>
13<tr>
14<td class="leftthird"><TMPL_INCLUDE NAME="pgcount.tmpl"></td>
15<td align="center"><TMPL_INCLUDE NAME="fpnla.tmpl"></td>
16<td class="rightthird"><TMPL_INCLUDE NAME="sbox.tmpl"></td>
17</tr>
18<tr><td colspan="3" align="center"><TMPL_INCLUDE NAME="lettsearch.tmpl"></td></tr>
19<tr><td colspan="3" align="right"><TMPL_IF domain_create><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=newdomain">New Domain</a></TMPL_IF></td></tr>
20</table>
21
22<table width="98%" border="0" cellspacing="4" cellpadding="3">
23<tr>
24<TMPL_LOOP NAME=colheads>
25<td class="datahead_<TMPL_IF firstcol>l<TMPL_ELSE>s</TMPL_IF>"><a href="dns.cgi?sid=<TMPL_VAR
26NAME=sid>&amp;page=<TMPL_VAR NAME=page><TMPL_IF NAME=offset>&amp;offset=<TMPL_VAR
27NAME=offset></TMPL_IF>&amp;sortby=<TMPL_VAR NAME=sortby>&amp;order=<TMPL_VAR NAME=order>"><TMPL_VAR
28NAME=colname></a><TMPL_IF NAME=sortorder>&nbsp;<img alt="<TMPL_VAR NAME=sortorder>"
29src="images/<TMPL_VAR NAME=sortorder>.png" /></TMPL_IF></td>
30</TMPL_LOOP>
31<TMPL_IF domain_edit> <td class="datahead_s">Change Status</td></TMPL_IF>
32<TMPL_IF domain_delete> <td class="datahead_s">Delete</td></TMPL_IF>
33</tr>
34<TMPL_IF name=domtable>
35<TMPL_LOOP name=domtable>
36<tr class="row<TMPL_VAR name=bg>">
37 <td align="left"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=reclist&amp;id=<TMPL_VAR NAME=domainid>&amp;defrec=n"><TMPL_VAR NAME=domain></a></td>
38 <td><TMPL_VAR name=status></td>
39 <td><TMPL_VAR name=group></td>
40<TMPL_IF domain_edit> <td align="center"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=domlist<TMPL_IF NAME=offset>&amp;offset=<TMPL_VAR NAME=offset></TMPL_IF>&amp;id=<TMPL_VAR NAME=domainid>&amp;domstatus=<TMPL_IF NAME=mkactive>domon<TMPL_ELSE>domoff</TMPL_IF>"><TMPL_IF NAME=mkactive>activate<TMPL_ELSE>deactivate</TMPL_IF></a></td></TMPL_IF>
41<TMPL_IF domain_delete> <td align="center"><a href="dns.cgi?sid=<TMPL_VAR NAME=sid>&amp;page=deldom&amp;id=<TMPL_VAR NAME=domainid>"><img src="images/trash2.png" alt="[ Delete ]" /></a></td></TMPL_IF>
42</tr>
43</TMPL_LOOP>
44<TMPL_ELSE>
45<tr><td colspan="5" align="center">No domains found</td></tr>
46</TMPL_IF>
47</table>
48
49</td>
50</tr>
51</table>
Note: See TracBrowser for help on using the repository browser.