37 lines
1021 B
XML
37 lines
1021 B
XML
<metal:block use-macro="main_template">
|
|
<div metal:fill-slot="content">
|
|
|
|
<div tal:condition="message" tal:content="message" class="alert alert-danger" />
|
|
|
|
<p>
|
|
<a href="categorie_edit/0" class="btn btn-success" role="button">
|
|
<span class="glyphicon glyphicon-plus"></span> Nouvelle categorie</a>
|
|
</p>
|
|
<div class="col-md-6">
|
|
<table id="categories_list" class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Categorie</th>
|
|
<th class="text-right">% cible</th>
|
|
<th class="text-right">% atteint</th>
|
|
<th class="text-right">Valeur</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr tal:repeat="item items">
|
|
<td class="${item.bg}"><a href="categorie_edit/${item.no_cat}">${item.categorie}</a></td>
|
|
<td class="text-right">${layout.to_percent(item.pc_cible)}</td>
|
|
<td class="text-right">${layout.to_percent(item.pc_atteint)}</td>
|
|
<td class="text-right">${layout.to_euro(item.valeur)}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<br />
|
|
<br />
|
|
|
|
</div><!-- content -->
|
|
</metal:block>
|
|
|