mirror of
https://github.com/quentin-g-dev/afup.git
synced 2026-03-25 17:52:13 +01:00
30 lines
638 B
HTML
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"}
|