aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/event_tracer/event_list.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/event_tracer/event_list.tpl')
-rw-r--r--plugins/event_tracer/event_list.tpl20
1 files changed, 10 insertions, 10 deletions
diff --git a/plugins/event_tracer/event_list.tpl b/plugins/event_tracer/event_list.tpl
index fd294e66b..accc27278 100644
--- a/plugins/event_tracer/event_list.tpl
+++ b/plugins/event_tracer/event_list.tpl
@@ -1,17 +1,17 @@
-<!-- DEV TAG: not smarty migrated -->
-There are {NB_EVENTS} calls to triger_event or triger_action.
+{* $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>
+ <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>
-<!-- BEGIN event -->
+{foreach from=$events item=event}
<tr>
- <td>{event.TYPE}</td>
- <td>{event.NAME}</td>
- <td>{event.FILE}</td>
+ <td>{$event.TYPE}</td>
+ <td>{$event.NAME}</td>
+ <td>{$event.FILE}</td>
</tr>
-<!-- END event -->
+{/foreach}
</table>