Files
2020-03-12 22:33:40 +01:00

32 lines
726 B
XML

<metal:block use-macro="main_template">
<div metal:fill-slot="content">
<div class="row">
<p>
<a href="text_edit/0" class="btn btn-success" role="button">
<span class="glyphicon glyphicon-plus"></span>&nbsp;
Créer un nouveau texte</a>
</p>
<table class="table table-condensed table-striped table-bordered">
<tr>
<th>Intitulé</th>
<th>Thème</th>
<th>Dernière mise à jour</th>
</tr>
<tr tal:repeat="ligne texts">
<td><a href="text_view/${ligne.text_id}">${ligne.intitule}</a></td>
<td>${ligne.theme}</td>
<td><span tal:content="ligne.modif_le.strftime('%d/%m/%Y %H:%M')" /></td>
</tr>
</table>
</div>
<br />
<br />
</div>
</metal:block>