source: extensions/ColorStat/admin/cstat_stat_show_iListColors.tpl @ 5961

Last change on this file since 5961 was 5961, checked in by grum, 14 years ago

Add plugin files

File size: 696 bytes
Line 
1<table class="littlefont" style="width:100%;" id="iListColorsTable">
2  {foreach from=$datas key=name item=data}
3  <tr>
4
5    <td style="width:40px;background-color:#{$data.color_id};">&nbsp;</td>
6    <td class="colorFont">#{$data.color_id}</td>
7
8    <td width="60px">{$data.num_images}</td>
9    <td width="40px">{$data.pct_images}</td>
10    <td width="110px">
11      <div class="pctBar{$themeconf.name}" style="width:{$data.pct_images}px;"></div>
12    </td>
13
14    <td width="80px">{$data.num_pixels}</td>
15    <td width="40px">{$data.pct_pixels}</td>
16    <td width="110px">
17      <div class="pctBar{$themeconf.name}" style="width:{$data.pct_pixels}px;"></div>
18    </td>
19
20  </tr>
21  {/foreach}
22</table>
23
Note: See TracBrowser for help on using the repository browser.