Ajout : ./garradin
[garradin.git] / templates / admin / wiki / recent.tpl
1 {include file="admin/_head.tpl" title="Pages modifiées récemment" current="wiki/recent"}
2
3 {if !empty($list)}
4 <table class="list">
5 <tbody>
6 {foreach from=$list item="page"}
7 <tr>
8 <th><a href="{$www_url}admin/wiki/?{$page.uri|escape}">{$page.titre|escape}</a></th>
9 <td>{$page.date_modification|date_fr:'d/m/Y à H:i'}</td>
10 </tr>
11 {/foreach}
12 </tbody>
13 </table>
14
15 {pagination url="?p=[ID]" page=$page bypage=$bypage total=$total}
16 {else}
17 <p class="alert">Pas de modification récente.</p>
18 {/if}
19
20 {include file="admin/_foot.tpl"}