source: trunk/admin/themes/default/template/stats.tpl @ 13079

Last change on this file since 13079 was 6363, checked in by plg, 14 years ago

remove all svn:mergeinfo properties

  • Property svn:eol-style set to LF
File size: 513 bytes
Line 
1
2<div class="titrePage">
3  <h2>{'History'|@translate} {$TABSHEET_TITLE}</h2>
4</div>
5
6<h3>{$L_STAT_TITLE}</h3>
7
8<table class="table2" id="dailyStats">
9        <tr class="throw">
10                <th>{$PERIOD_LABEL}</th>
11                <th>{'Pages seen'|@translate}</th>
12                <th></th>
13        </tr>
14
15{if not empty($statrows)}
16{foreach from=$statrows item=row}
17        <tr>
18                <td style="white-space: nowrap">{$row.VALUE}</td>
19                <td class="number">{$row.PAGES}</td>
20                <td><div class="statBar" style="width:{$row.WIDTH}px"></div></td>
21        </tr>
22{/foreach}
23{/if}
24
25</table>
Note: See TracBrowser for help on using the repository browser.