source: trunk/templates/useradmin.tmpl@ 589

Last change on this file since 589 was 589, checked in by Kris Deugau, 10 years ago

/trunk

Le sigh. Move a small fragment of HTML from the header back to all the
individual pages that need it, so we can selectively load and use
Javascript, and do some initial tweaking with body.onload.

File size: 2.5 KB
Line 
1<body>
2<div id="main">
3
4<table class="wholepage"><tr>
5<TMPL_INCLUDE NAME="menu.tmpl">
6
7<td align="center" valign="top">
8
9<TMPL_INCLUDE NAME="msgblock.tmpl">
10
11<table width="98%" class="csubtable">
12<tr><th colspan="3"><div class="center maintitle">Manage users</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<TMPL_IF adduser>
20<tr><td colspan="3" align="right"><a href="<TMPL_VAR NAME=script_self>&amp;page=user">New User</a></td></tr>
21</TMPL_IF>
22</table>
23
24<table width="98%" border="0" cellspacing="4" cellpadding="3" class="csubtable">
25<tr>
26<TMPL_LOOP NAME=colheads> <td class="datahead_<TMPL_IF __first__>l<TMPL_ELSE>s</TMPL_IF>"><a href="<TMPL_VAR
27 NAME=script_self>&amp;page=<TMPL_VAR NAME=page><TMPL_IF NAME=offset>&amp;offset=<TMPL_VAR
28 NAME=offset></TMPL_IF>&amp;sortby=<TMPL_VAR NAME=sortby>&amp;order=<TMPL_VAR NAME=order>"><TMPL_VAR
29 NAME=colname></a><TMPL_IF NAME=sortorder>&nbsp;<img alt="<TMPL_VAR NAME=sortorder>" src="images/<TMPL_VAR
30 NAME=sortorder>.png" /></TMPL_IF></td>
31</TMPL_LOOP>
32<TMPL_IF deluser> <td class="datahead_s">Delete</td></TMPL_IF>
33</tr>
34<TMPL_IF name=usertable>
35<TMPL_LOOP name=usertable>
36<tr class="row<TMPL_IF __odd__>0<TMPL_ELSE>1</TMPL_IF>">
37 <td align="left"><TMPL_IF eduser><a href="<TMPL_VAR NAME=script_self>&amp;page=user&amp;useraction=edit&amp;user=<TMPL_VAR NAME=user_id>"><TMPL_VAR NAME=username></a><TMPL_ELSE><TMPL_VAR NAME=username></TMPL_IF></td>
38 <td class="data_nowrap"><TMPL_VAR name=fname></td>
39 <td><TMPL_VAR name=type></td>
40 <td><TMPL_VAR name=group_name></td>
41 <td align="center">
42<TMPL_IF eduser>
43 <a href="<TMPL_VAR NAME=script_self>&amp;page=useradmin<TMPL_IF NAME=offset>&amp;offset=<TMPL_VAR NAME=offset></TMPL_IF>&amp;id=<TMPL_VAR NAME=user_id>&amp;userstatus=<TMPL_IF status>useroff<TMPL_ELSE>useron</TMPL_IF>"><TMPL_IF status>enabled<TMPL_ELSE>disabled</TMPL_IF></a>
44<TMPL_ELSE>
45 <TMPL_IF status>enabled<TMPL_ELSE>disabled</TMPL_IF>
46</TMPL_IF>
47</td>
48<TMPL_IF deluser>
49 <td align="center"><a href="<TMPL_VAR NAME=script_self>&amp;page=deluser&amp;id=<TMPL_VAR NAME=user_id>"><img src="images/trash2.png" alt="[ Delete ]" /></a></td>
50</TMPL_IF>
51</tr>
52</TMPL_LOOP>
53<tr><td colspan="6" align="center"><TMPL_INCLUDE NAME="fpnla.tmpl"></td></tr>
54<TMPL_ELSE>
55<tr><td colspan="6" align="center">No users found</td></tr>
56</TMPL_IF>
57</table>
58
59</td>
60</tr>
61</table>
Note: See TracBrowser for help on using the repository browser.