HB/templates/game/pilori.tpl

23 lines
764 B
Smarty
Raw Normal View History

2008-11-19 11:00:00 +00:00
{include file='game/header.tpl'}
<h2>Pilori de la galaxie</h2>
<table style="width: 85%; margin: auto;">
<thead>
<tr>
<th>Utilisateur</th>
<th>Raison</th>
<th>Fin du banissement</th>
<th>Opérateur</th>
</tr>
</thead>
<tbody>
{foreach from=$joueurs item=joueur}
<tr>
<td>{$joueur.pseudo}</td>
<td>{$joueur.raisonmv|escape}</td>
<td>{if $joueur.mv == 3 || $joueur.last_visite == 2147483647}Définitif{else}{$joueur.last_visite+259200|date_format:"%a %d %B %Y %H:%M"|escape}{/if}</td>
<td>{if $joueur.operateurmv}{mailto address=$joueur.mail encode="hex" text=$joueur.operateurmv}{else}Inconnu{/if}</td>
</tr>
{/foreach}
</tbody>
</table>
{include file='game/footer.tpl'}