remplacer devis-en-attente par derniers-suivis
This commit is contained in:
31
mondumas/templates/dossier/dern_suivis.pt
Normal file
31
mondumas/templates/dossier/dern_suivis.pt
Normal file
@@ -0,0 +1,31 @@
|
||||
<metal:block use-macro="main_template">
|
||||
<div metal:fill-slot="content">
|
||||
|
||||
<br />
|
||||
|
||||
<div class="row">
|
||||
<table class="table table-bordered table-condensed">
|
||||
<tr>
|
||||
<th>Date</th>
|
||||
<th>Dossier</th>
|
||||
<th>Action - commentaire</th>
|
||||
<th class="text-center">Par</th>
|
||||
</tr>
|
||||
<tr tal:repeat="item items">
|
||||
<td>${item.DATE.strftime('%d-%m-%Y')}</td>
|
||||
<td>
|
||||
<a href="${request.route_url('dossier_view', nodossier=item.nodossier)}">
|
||||
${item.nodossier} - ${item.C_NOM}</a>
|
||||
</td>
|
||||
<td>${item.COMMENT}</td>
|
||||
<td class="text-center">${item.USERMAJ}</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
</div><!-- content -->
|
||||
</metal:block>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user