HB/templates/admin/demarrage.tpl

23 lines
725 B
Smarty
Raw Normal View History

2008-09-20 10:00:00 +00:00
{include file='game/header.tpl'}
<a href="?p={$linkpage}&amp;i=add">Créer une nouvelle page</a>
<h2>Pages de démarrage</h2>
<h3>La première news est celle qui sera affichée à la connexion des joueurs</h3>
<table>
<thead>
<tr>
<th>Action</th>
<th>Titre</th>
<th>Date de visibilité</th>
</tr>
</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><b>{$ligne.titre|escape}</b></td>
<td>{$ligne.time|date_format:"%d/%m/%y %H:%M:%S"}</td>
</tr>
{/foreach}
</tbody>
</table>
{include file='game/footer.tpl'}