source: trunk/templates/log.tmpl@ 72

Last change on this file since 72 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
RevLine 
[47]1<!-- <TMPL_VAR NAME=sid> -->
2<table class="wholepage"><tr>
3<TMPL_INCLUDE NAME="menu.tmpl">
[2]4
[47]5<td align="center">
[2]6
[47]7<div id="datatablewrapper">
[2]8
[60]9<table border="0" width="90%">
[59]10<tr><th colspan="5" align="center">Log entries for <TMPL_VAR NAME=logfor></th></tr>
[47]11 <tr class="darkrowheader">
[2]12 <td>Name</td>
13 <td>Customer ID</td>
14 <td>Email</td>
15 <td>Log Entry</td>
[47]16 <td>Date / Time</td>
[2]17 </tr>
[47]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>
[2]26 </tr>
[47]27</TMPL_LOOP>
28<TMPL_ELSE>
29 <tr class="datalinelight">
30 <td colspan="5" align="center">No log entries found</td>
[2]31 </tr>
[47]32</TMPL_IF>
[2]33</table>
34
[47]35</div>
[2]36
[47]37</td>
[2]38</tr>
39</table>
[47]40
Note: See TracBrowser for help on using the repository browser.