initial upload

This commit is contained in:
2023-06-22 10:34:18 +02:00
parent 6df897b44d
commit 5c621cf669
1030 changed files with 355394 additions and 49 deletions

View File

@@ -0,0 +1,34 @@
<metal:block use-macro="main_template">
<div metal:fill-slot="content">
<p>
<a href="${request.application_url}/parametres" class="btn btn-default" role="button">
<span class="glyphicon glyphicon-chevron-left"></span> Retour</a>
</p>
<table id="agences_list" class="table table-condensed table-striped table-bordered">
<tr>
<th class="text-center">Code</th>
<th>Nom</th>
<th class="text-center">Centre</th>
<th>Téléphone</th>
<th>Email</th>
<th>Dern. validation</th>
</tr>
<tr tal:repeat="item items">
<td class="text-center">${item.CODE}</td>
<td><a href="/agence_edit/${item.CODE}">${item.LIBELLE}</a></td>
<td class="text-center">${item.CENTRE}</td>
<td>${item.TELEPHONE}</td>
<td>${item.email}</td>
<td>${item.DERN_VALIDATION.strftime('%d-%m-%Y')}</td>
</tr>
</table>
<br />
<br />
</div><!-- content -->
</metal:block>