source: trunk/templates/log.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: 1.6 KB
Line 
1<table class="wholepage"><tr>
2<TMPL_INCLUDE NAME="menu.tmpl">
3
4<td align="center" valign="top">
5
6<TMPL_IF errmsg>
7<div class='errmsg'><TMPL_VAR NAME=errmsg></div>
8</TMPL_IF>
9
10<table border="0" width="90%">
11<tr><th colspan="3"><div class="center maintitle">Log entries for <TMPL_VAR NAME=logfor></div></th></tr>
12<tr>
13<td class="leftthird"><TMPL_INCLUDE NAME="pgcount.tmpl"></td>
14<td align="center"><TMPL_INCLUDE NAME="fpnla.tmpl"></td>
15<td class="rightthird">&nbsp;</td>
16</tr>
17</table>
18<table border="0" width="90%">
19 <!-- Not sure "Customer ID" (filled with uid) is of any use... -->
20 <!-- td>Customer ID</td -->
21<tr class="darkrowheader">
22<TMPL_LOOP NAME=colheads> <td><a href="<TMPL_VAR NAME=script_self>&amp;page=<TMPL_VAR NAME=page><TMPL_IF
23 NAME=offset>&amp;offset=<TMPL_VAR NAME=offset></TMPL_IF>&amp;sortby=<TMPL_VAR
24 NAME=sortby>&amp;order=<TMPL_VAR NAME=order>&amp;id=<TMPL_VAR NAME=id>&amp;ltype=<TMPL_VAR
25 NAME=ltype>"><TMPL_VAR NAME=colname></a><TMPL_IF
26 NAME=sortorder>&nbsp;<img alt="<TMPL_VAR NAME=sortorder>" src="images/<TMPL_VAR
27 NAME=sortorder>.png" /></TMPL_IF></td>
28</TMPL_LOOP>
29</tr>
30
31<TMPL_IF logentries>
32<TMPL_LOOP NAME=logentries>
33 <tr class="datalinelight">
34 <td><TMPL_VAR NAME=userfname></td>
35 <!-- td><TMPL_VAR NAME=userid></td -->
36 <td><TMPL_VAR NAME=useremail></td>
37 <td><TMPL_VAR NAME=logentry></td>
38 <td><TMPL_VAR NAME=logtime></td>
39 </tr>
40</TMPL_LOOP>
41<TMPL_ELSE>
42 <tr class="datalinelight">
43 <td colspan="5" align="center">No log entries found</td>
44 </tr>
45</TMPL_IF>
46</table>
47
48</td>
49</tr>
50</table>
Note: See TracBrowser for help on using the repository browser.