24 lines
581 B
XML
24 lines
581 B
XML
<div metal:use-macro="load: ../global_layout.pt">
|
|
<div metal:fill-slot="content">
|
|
|
|
<p>
|
|
<a href="${request.application_url}">[ Retour ]</a>
|
|
<a href="${request.application_url}/doc_edit/${topic}/0" tal:condition="not layout.isAnonymous()">[ Créer ]</a>
|
|
</p>
|
|
<div class="row">
|
|
<table class="table">
|
|
<tr tal:repeat="ligne docs">
|
|
<td><a href="/doc_view/${ligne.doc_id}"><b>${ligne.intitule}</b></a></td>
|
|
<td>${ligne.tag1}</td>
|
|
<td>${ligne.cree_le.strftime("%d-%m-%Y")}</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
</div>
|
|
|
|
</div>
|
|
|