32 lines
704 B
XML
32 lines
704 B
XML
<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>
|
|
|
|
|