Files
Piwigo/plugins/event_tracer/event_list.tpl
T
plegall ae39ae328a complement to r3282, remove all $Id$ in source code.
git-svn-id: http://piwigo.org/svn/trunk@3283 68402e56-0260-453c-a942-63ccdbb3a9ee
2009-05-13 23:21:06 +00:00

17 lines
387 B
Smarty

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>