source: trunk/templates/log.tmpl@ 76

Last change on this file since 76 was 60, checked in by Kris Deugau, 14 years ago

/trunk

Littleish cosmetic tweaks to log display
Tweaks to calls into log display page so that it shows the right data
Stub in section to show log for a user (not sure how useful this will

be...) - NB, this is not linked from anywhere and not present at all
in Vega's implementation

File size: 888 bytes
Line 
1<!-- <TMPL_VAR NAME=sid> -->
2<table class="wholepage"><tr>
3<TMPL_INCLUDE NAME="menu.tmpl">
4
5<td align="center">
6
7<div id="datatablewrapper">
8
9<table border="0" width="90%">
10<tr><th colspan="5" align="center">Log entries for <TMPL_VAR NAME=logfor></th></tr>
11 <tr class="darkrowheader">
12 <td>Name</td>
13 <td>Customer ID</td>
14 <td>Email</td>
15 <td>Log Entry</td>
16 <td>Date / Time</td>
17 </tr>
18<TMPL_IF logentries>
19<TMPL_LOOP NAME=logentries>
20 <tr class="datalinelight">
21 <td><TMPL_VAR NAME=userfname></td>
22 <td><TMPL_VAR NAME=userid></td>
23 <td><TMPL_VAR NAME=useremail></td>
24 <td><TMPL_VAR NAME=logentry></td>
25 <td><TMPL_VAR NAME=logtime></td>
26 </tr>
27</TMPL_LOOP>
28<TMPL_ELSE>
29 <tr class="datalinelight">
30 <td colspan="5" align="center">No log entries found</td>
31 </tr>
32</TMPL_IF>
33</table>
34
35</div>
36
37</td>
38</tr>
39</table>
40
Note: See TracBrowser for help on using the repository browser.