Files
2023-06-22 10:34:18 +02:00

35 lines
1.0 KiB
XML

<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>