source: trunk/plugins/event_tracer/event_list.tpl @ 2254

Last change on this file since 2254 was 2254, checked in by rvelices, 16 years ago
  • upgrade goes smarty
  • event_tracer goes smarty
  • correction in index.tpl
  • Property svn:eol-style set to LF
  • Property svn:keywords set to Author Date Id Revision
File size: 398 bytes
Line 
1{* $Id: event_list.tpl 2254 2008-03-06 00:25:47Z rvelices $ *}
2There are {$NB_EVENTS} calls to triger_event or triger_action.
3
4<table width="99%" class="table2">
5<tr class="throw">
6  <th><a href="{$U_SORT0}">Type</a></th>
7  <th><a href="{$U_SORT1}">Name</a></th>
8  <th><a href="{$U_SORT2}">File</a></th>
9</tr>
10{foreach from=$events item=event}
11<tr>
12  <td>{$event.TYPE}</td>
13  <td>{$event.NAME}</td>
14  <td>{$event.FILE}</td>
15</tr>
16{/foreach}
17</table>
Note: See TracBrowser for help on using the repository browser.