HB/templates/admin/bandeau.tpl

19 lines
554 B
Smarty
Raw Normal View History

2008-11-04 11:00:00 +00:00
{include file='game/header.tpl'}
<a href="?p={$linkpage}&amp;i=add">Ajouter un titre</a>
<table>
<thead>
2008-09-20 10:00:00 +00:00
<tr>
<th>Action</th>
<th>Texte</th>
</tr>
2008-11-04 11:00:00 +00:00
</thead>
<tbody>
{foreach from=$tableau item=ligne key=key}
<tr>
<td><a href="?p={$linkpage}&amp;i={$ligne.id}">EDIT</a> | <a href="?p={$linkpage}&amp;d={$ligne.id}">SUPPR</a></td>
<td{if $ligne.color} style="color: {$ligne.color};"{/if}><b>{$ligne.texte|upper}</b></td>
</tr>
{/foreach}
</tbody>
</table>
{include file='game/footer.tpl'}