source: branches/2.0/admin/template/goto/stats.tpl @ 4894

Last change on this file since 4894 was 2531, checked in by vdigital, 16 years ago

roma tpl were missing.

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 524 bytes
Line 
1{* $Id: stats.tpl 2531 2008-09-14 12:25:34Z 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.