source: branches/stable/templates/log.tmpl@ 649

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

/branches/stable

Subtle bugfix merge! All changes from /trunk r589 through r648 merged.

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