source: trunk/admin/template/yoga/admin/stats.tpl @ 2415

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

Reversed logic for backgrounds
$tabsheet transfer: general use available in admin.tpl
Some CSS admin simplications

  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 801 bytes
Line 
1{* $Id: stats.tpl 2415 2008-07-02 06:40:13Z vdigital $ *}
2
3<div class="titrePage">
4  <ul class="categoryActions">
5    <li>
6      <a
7        href="{$U_HELP}"
8        onclick="popuphelp(this.href); return false;"
9        title="{'Help'|@translate}"
10      >
11        <img src="{$themeconf.icon_dir}/help.png" class="button" alt="(?)">
12      </a>
13    </li>
14  </ul>
15  <h2>{'History'|@translate} {$TABSHEET_TITLE}</h2>
16</div>
17
18<h3>{$L_STAT_TITLE}</h3>
19
20<table class="table2" id="dailyStats">
21        <tr class="throw">
22                <th>{$PERIOD_LABEL}</th>
23                <th>{'Pages seen'|@translate}</th>
24                <th></th>
25        </tr>
26
27{if not empty($statrows)}
28{foreach from=$statrows item=row}
29        <tr>
30                <td style="white-space: nowrap">{$row.VALUE}</td>
31                <td class="number">{$row.PAGES}</td>
32                <td><div class="statBar" style="width:{$row.WIDTH}px"></div></td>
33        </tr>
34{/foreach}
35{/if}
36
37</table>
Note: See TracBrowser for help on using the repository browser.