source: trunk/admin/template/goto/stats.tpl @ 3282

Last change on this file since 3282 was 3282, checked in by plg, 15 years ago

change: according to topic:15067, svn:keywords property was removed

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