refonte de doc_list et doc_view

This commit is contained in:
2020-04-30 17:43:50 +02:00
parent cb73317f8c
commit 9462483fa5
13 changed files with 156 additions and 136 deletions

View File

@@ -0,0 +1,20 @@
<metal:block use-macro="main_template">
<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>
<td>${ligne.modif_le.strftime("%d-%m-%Y")}</td>
</tr>
</table>
</div>
<br />
<br />
</div>
</metal:block>