piwigo/plugins/event_tracer/event_list.tpl
rvelices 37446caa5c - upgrade goes smarty
- event_tracer goes smarty
- correction in index.tpl

git-svn-id: http://piwigo.org/svn/trunk@2254 68402e56-0260-453c-a942-63ccdbb3a9ee
2008-03-06 00:25:47 +00:00

17 lines
398 B
Smarty

{* $Id$ *}
There are {$NB_EVENTS} calls to triger_event or triger_action.
<table width="99%" class="table2">
<tr class="throw">
<th><a href="{$U_SORT0}">Type</a></th>
<th><a href="{$U_SORT1}">Name</a></th>
<th><a href="{$U_SORT2}">File</a></th>
</tr>
{foreach from=$events item=event}
<tr>
<td>{$event.TYPE}</td>
<td>{$event.NAME}</td>
<td>{$event.FILE}</td>
</tr>
{/foreach}
</table>