source: branches/2.1/admin/themes/default/template/stats.tpl @ 6323

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

merge r6320 from trunk to branch 2.1

bug 1667 fixed: r6027 was fixing a minor error on tabs for Google Chrome/Safari
BUT was introducing a major visual issue for IE8. Backmerged + adds the -webkit
radius anyway.

This is a quickfix for release 2.1.1, the improved display introduced by nikrou
was nice and it would be better to have it, but working in IE8

File size: 513 bytes
RevLine 
[2531]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.