mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-03-28 17:42:57 +01:00
included page, localized items are managed directly in the template. - new : sub template admin/double_select is included in templates admin/cat_options, admin/user_perm and admin/group_perm. I haven't been able to use it in admin/picture_modify because it seems impossible to have two instance of the same sub-template without interfering. - modification : bug 99, in profile manager, no auto submit when changing language (useless and generate accessibility problem). - improvement : HTML semantically correct for administration menu, simpler syntax, less tags, correct tags (dl/dt/dd instead of div/div). - modification : number of waiting elements and unvalidated comments are displayed in admin/intro instead of administration menu (with a link to the dedicated pages). - deletion : no link to profile from admin/user_list anymore (no need). git-svn-id: http://piwigo.org/svn/trunk@817 68402e56-0260-453c-a942-63ccdbb3a9ee
23 lines
563 B
Smarty
23 lines
563 B
Smarty
<h1>{lang:title_history}</h1>
|
|
|
|
<div class="admin">{L_STAT_TITLE}</div>
|
|
<img class="image" src="{IMG_REPORT}" alt="{L_STAT_MONTHLY_ALT}" />
|
|
<div class="admin">{L_STAT_MONTH_TITLE}</div>
|
|
<table class="table2" width="60%">
|
|
<tr class="throw">
|
|
<th>{L_VALUE}</th>
|
|
<th>{L_PAGES_SEEN}</th>
|
|
<th>{L_VISITORS}</th>
|
|
<th>{L_PICTURES}</th>
|
|
</tr>
|
|
<!-- BEGIN statrow -->
|
|
<tr class="{statrow.T_CLASS}">
|
|
<td>{statrow.VALUE}</td>
|
|
<td>{statrow.PAGES}</td>
|
|
<td>{statrow.VISITORS}</td>
|
|
<td>{statrow.IMAGES}</td>
|
|
</tr>
|
|
<!-- END statrow -->
|
|
</table>
|
|
<br />
|