source: trunk/templates/useradmin.tmpl@ 493

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

/trunk

Overhaul session handling; pure URL-based sessions are subject to
copy-paste session-stealing. Convert to cookie-based session tracking
instead. This also provides bonuses in terms of inlinks from other
utilities or copy-paste links.
While session-handling was in pieces, add "pick-up-where-I-left-off"
login handling so that logins don't always end up only on the initial
domain list. This is especially handy for copy-paste links.

Also clean up some of the docucomments, use the CGI::Simple object to
do 302 redirects, and bring the revzone default sort field setup into
line with other thing-lists.

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