20 lines
375 B
XML
20 lines
375 B
XML
<div metal:use-macro="load: ../global_layout.pt">
|
|
<div metal:fill-slot="content">
|
|
|
|
<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>
|
|
|