source: branches/1.5/template/yoga/admin/stats.tpl @ 12049

Last change on this file since 12049 was 918, checked in by volcom, 19 years ago

2005-10-30 volcom

  • bug 190 fixed: issue in stats.tpl display
  • bug fixed: labels of monthly, daily graph fixed
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.1 KB
Line 
1<!-- $Id: stats.tpl 918 2005-10-30 20:35:39Z volcom $ -->
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" width="60%">
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>{statrow.PAGES}</td>
19    <td>{statrow.VISITORS}</td>
20    <td>{statrow.IMAGES}</td>
21  </tr>
22<!-- END statrow -->
23</table>
24
25<h3>{L_DATE_TITLE}</h3>
26<table class="table2" width="98%">
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 nowrap>{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
48<!-- BEGIN navigation -->
49<div class="admin">
50{navigation.NAV_BAR}
51</div>
52<!-- END navigation -->
Note: See TracBrowser for help on using the repository browser.