Files
afup/htdocs/templates/administration/logs.html
2020-01-19 16:25:58 +01:00

30 lines
638 B
HTML

<h2>Logs</h2>
<table class="ui table striped compact celled">
<thead>
<tr>
<th>Date</th>
<th>Nom</th>
<th>Prénom</th>
<th>Texte</th>
</tr>
</thead>
<tbody>
{foreach from=$logs item=log}
<tr>
<td>{$log.date|date_format:"%d/%m/%y %H:%M:%S"}</td>
<td>{$log.nom|escape}</td>
<td>{$log.prenom|escape}</td>
<td>{$log.texte|escape|nl2br}</td>
</tr>
{foreachelse}
<tr>
<td colspan="4"><em>Aucun log</em></td>
</tr>
{/foreach}
</tbody>
</table>
{include file="pagination.html"}