initial upload
This commit is contained in:
34
aem_gestion/templates/parametres/agences.pt
Normal file
34
aem_gestion/templates/parametres/agences.pt
Normal 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>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user