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

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

/branches/stable

Merge reverse DNS work and object conversion from /trunk, part 5

Includes changes through r543 with a few more minor conflicts.

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 <tr><td colspan="5" align="center"><TMPL_INCLUDE NAME="fpnla.tmpl"></td></tr>
42<TMPL_ELSE>
43 <tr class="datalinelight">
44 <td colspan="5" align="center">No log entries found</td>
45 </tr>
46</TMPL_IF>
47</table>
48
49</td>
50</tr>
51</table>
Note: See TracBrowser for help on using the repository browser.