source: trunk/templates/log.tmpl@ 100

Last change on this file since 100 was 100, checked in by Kris Deugau, 13 years ago

/trunk/templates

Templates

UI tweaks - make sure all main-body content is valign=top

dns.css

tweak comment style so IE ignores a line properly
fix typo, set valign=top on #datatablewrapper
add a couple more classes

grouptree-ie.css

tweak padding to indent group tree properly, comment a few more (apparently)
irrelevant bits

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