# tag for f in `find . -name \*.tpl` do echo $f mv $f $f.tmp echo '<!-- DEV TAG: not smarty migrated -->' > $f cat $f.tmp >> $f rm -f $f.tmp done #find file not migrated for f in `find . -name \*.tpl` do grep -i '<!-- DEV TAG: not smarty migrated -->' $f > /dev/null && echo $f done git-svn-id: http://piwigo.org/svn/trunk@2222 68402e56-0260-453c-a942-63ccdbb3a9ee
34 lines
815 B
Go Template
34 lines
815 B
Go Template
<!-- DEV TAG: not smarty migrated -->
|
|
<!-- $Id$ -->
|
|
<div class="titrePage">
|
|
<ul class="categoryActions">
|
|
<li>
|
|
<a
|
|
href="{U_HELP}"
|
|
onclick="popuphelp(this.href); return false;"
|
|
title="{lang:Help}"
|
|
>
|
|
<img src="{themeconf:icon_dir}/help.png" class="button" alt="(?)">
|
|
</a>
|
|
</li>
|
|
</ul>
|
|
<h2>{lang:History} {TABSHEET_TITLE}</h2>
|
|
{TABSHEET}
|
|
</div>
|
|
|
|
<h3>{L_STAT_TITLE}</h3>
|
|
|
|
<table class="table2" id="dailyStats">
|
|
<tr class="throw">
|
|
<th>{PERIOD_LABEL}</th>
|
|
<th>{lang:Pages seen}</th>
|
|
<th></th>
|
|
</tr>
|
|
<!-- BEGIN statrow -->
|
|
<tr>
|
|
<td style="white-space: nowrap">{statrow.VALUE}</td>
|
|
<td class="number">{statrow.PAGES}</td>
|
|
<td><div class="statBar" style="width:{statrow.WIDTH}px"></div></td>
|
|
</tr>
|
|
<!-- END statrow -->
|
|
</table>
|