tuning docs_list.pt

This commit is contained in:
2017-07-26 14:48:16 +02:00
parent ae819f49fa
commit 2ac5de7779
3 changed files with 45 additions and 19 deletions

View File

@@ -7,20 +7,39 @@
<span class="glyphicon glyphicon-plus"></span>&nbsp;
Créér une nouvelle doc</a>
</p>
<table class="table table-condensed table-striped table-bordered">
<tr>
<th>Intitule</th>
<th>Thème</th>
<th>Dernière mise à jour</th>
</tr>
<tr tal:repeat="ligne docs">
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
<td>${ligne.theme}</td>
<td><span tal:content="ligne.modif_le.strftime('%d/%m/%Y %H:%M')" /></td>
</tr>
</table>
<div class="col-md-4">
<table class="table table-condensed table-striped table-bordered">
<tr>
<th>FINANCE</th>
</tr>
<tr tal:repeat="ligne docs_finance">
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<table class="table table-condensed table-striped table-bordered">
<tr>
<th>VOITURE</th>
</tr>
<tr tal:repeat="ligne docs_voiture">
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
</tr>
</table>
</div>
<div class="col-md-4">
<table class="table table-condensed table-striped table-bordered">
<tr>
<th class=text-center"">MAISON</th>
</tr>
<tr tal:repeat="ligne docs_maison">
<td><a href="doc_view/${ligne.doc_id}">${ligne.intitule}</a></td>
</tr>
</table>
</div>
</div>
<br />