Ignore:
Timestamp:
Mar 6, 2008, 1:25:47 AM (16 years ago)
Author:
rvelices
Message:
  • upgrade goes smarty
  • event_tracer goes smarty
  • correction in index.tpl
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/plugins/event_tracer/event_list.tpl

    r2222 r2254  
    1 <!-- DEV TAG: not smarty migrated -->
    2 There are {NB_EVENTS} calls to triger_event or triger_action.
     1{* $Id$ *}
     2There are {$NB_EVENTS} calls to triger_event or triger_action.
    33
    44<table width="99%" class="table2">
    55<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>
     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>
    99</tr>
    10 <!-- BEGIN event -->
     10{foreach from=$events item=event}
    1111<tr>
    12   <td>{event.TYPE}</td>
    13   <td>{event.NAME}</td>
    14   <td>{event.FILE}</td>
     12  <td>{$event.TYPE}</td>
     13  <td>{$event.NAME}</td>
     14  <td>{$event.FILE}</td>
    1515</tr>
    16 <!-- END event -->
     16{/foreach}
    1717</table>
Note: See TracChangeset for help on using the changeset viewer.