source: trunk/template/yoga/admin/stats.tpl @ 1376

Last change on this file since 1376 was 1339, checked in by chrisaga, 18 years ago

fix bug 400 : <td nowrap> dans l'historique, and improve history tables, plus some code formating

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.2 KB
Line 
1<!-- $Id: stats.tpl 1339 2006-06-04 10:13:38Z chrisaga $ -->
2<h2>{lang:title_history}</h2>
3
4<h3>{L_STAT_TITLE}</h3>
5<img class="image" src="{IMG_REPORT}" alt="{L_STAT_MONTHLY_ALT}" />
6
7<h3>{L_STAT_DETAIL_TITLE}</h3>
8<table class="table2" id="dailyStats">
9  <tr class="throw">
10    <th>{L_VALUE}</th>
11    <th>{L_PAGES_SEEN}</th>
12    <th>{L_VISITORS}</th>
13    <th>{L_PICTURES}</th>
14  </tr>
15<!-- BEGIN statrow -->
16  <tr class="{statrow.T_CLASS}">
17    <td>{statrow.VALUE}</td>
18    <td class="number">{statrow.PAGES}</td>
19    <td class="number">{statrow.VISITORS}</td>
20    <td class="number">{statrow.IMAGES}</td>
21  </tr>
22<!-- END statrow -->
23</table>
24
25<h3>{L_DATE_TITLE}</h3>
26<table class="table2" id="detailedStats">
27  <tr class="throw">
28    <th>{L_STAT_HOUR}</th>
29    <th>{L_STAT_LOGIN}</th>
30    <th>{L_STAT_ADDR}</th>
31    <th>{L_STAT_CATEGORY}</th>
32    <th>{L_STAT_FILE}</th>
33    <th>{L_STAT_PICTURE}</th>
34  </tr>
35<!-- BEGIN detail -->
36  <tr class="{detail.T_CLASS}">
37    <td class="hour">{detail.HOUR}</td>
38    <td>{detail.LOGIN}</td>
39    <td>{detail.IP}</td>
40    <td>{detail.CATEGORY}</td>
41    <td>{detail.FILE}</td>
42    <td>{detail.PICTURE}</td>
43  </tr>
44<!-- END detail -->
45</table>
46
47<!-- BEGIN navigation -->
48<div class="admin">
49{navigation.NAV_BAR}
50</div>
51<!-- END navigation -->
Note: See TracBrowser for help on using the repository browser.