HB/templates/game/alliance_adm_chat.tpl

26 lines
740 B
Smarty
Raw Normal View History

2008-11-17 11:00:00 +00:00
{include file='game/header.tpl'}
<h2>Administration de l'alliance</h2>
{include file='game/alliance_adm_header.tpl'}
<br />
<h2 id="chat">Administration du chat</h2>
<table style="text-align: center; width: 100%;">
<thead>
<tr>
<th>Pseudo</th>
<th>Date</th>
<th>Message</th>
<th>Supprimer</th>
</tr>
</thead>
<tbody>
{foreach from=$chat item=message}
<tr>
<td>{$message.emetteur}</td>
<td>{$message.timestamp|date_format:"%d/%m/%y %H:%M:%S"}</td>
2008-11-22 11:00:00 +00:00
<td>{$message.message|escape}</td>
2008-11-17 11:00:00 +00:00
<td><a href="{$menu.alliance}&amp;q=adm_chat&amp;i={$message.id}"><i>Supprimer</i></a></td>
</tr>
{/foreach}
</tbody>
</table>
{include file='game/footer.tpl'}