source: extensions/AStat/admin/astat_by_period.tpl @ 14201

Last change on this file since 14201 was 3394, checked in by grum, 15 years ago

Add plugin AStat 2.0.4

  • Property svn:executable set to *
File size: 1.3 KB
Line 
1<table class="table2 littlefont" id="dailyStats">
2  <tr class="throw">
3    <th>{$datas.PERIOD_LABEL}</th>
4    <th>{'Pages seen'|@translate}<span class="MiniSquare1">&nbsp;&diams;</span></th>
5    <th>{'Pictures_seen'|@translate}<span class="MiniSquare2">&nbsp;&diams;</span></th>
6    <th>{'Categories_seen'|@translate}<span class="MiniSquare4">&nbsp;&diams;</span></th>
7    <th>{'IP_visit'|@translate}<span class="MiniSquare3">&nbsp;&diams;</span></th>
8    <th></th>
9  </tr>
10
11  {if isset($datarows) and count($datarows)}
12    {foreach from=$datarows key=name item=data}
13      <tr class="StatTableRow">
14        <td style="white-space: nowrap">{$data.VALUE}</td>
15        <td class="number">{$data.PAGES}</td>
16        <td class="number">{$data.PICTURES}</td>
17        <td class="number">{$data.CATEGORIES}</td>
18        <td class="number">{$data.IPVISIT}</td>
19        <td>
20          <div class="AStatBar1" style="width:{$data.WIDTH3}px" />
21          <div class="AStatBar2" style="width:{$data.WIDTH2}px" />
22          <div class="AStatBar4" style="width:{$data.WIDTH4}px" />
23          <div class="AStatBar3" style="width:{$data.WIDTH1}px" />
24        </td>
25      </tr>
26    {/foreach}
27  {/if}
28</table>
29
30{if isset($datas.ASTAT_TIME_REQUEST)}
31  <div class='time_request'>{$datas.ASTAT_TIME_REQUEST}</div>
32{/if}
Note: See TracBrowser for help on using the repository browser.