recusfiscaux/templates/activites.tpl
engel 46a88944fc Réorganistion fichiers ; ajout gestion versements totaux par personne ;
montants gérés en centimes

FossilOrigin-Name: e1e11bdd898e24dc30d3a6f150e9679ed2d6bf915ac828cdfbb830b118651b8f
2022-01-26 11:12:42 +00:00

31 lines
No EOL
893 B
Smarty

<!-- nav bar -->
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="activites"}
<h2>Liste des activités, cotisations et comptes associés</h2>
<table class="list">
<thead>
<tr>
<th>Nom</th>
<th>Description</th>
<th>Tarif</th>
<th>Description</th>
<th>N° Compte</th>
<th>Nom Compte</th>
</tr>
</thead>
<tbody>
{foreach from=$activitesTarifsComptes item="activite"}
<tr>
<td>{$activite.label}</td>
<td>{$activite.descService}</td>
<td>{$activite.tarif}</td>
<td>{$activite.descTarif}</td>
<td>{$activite.numero_cpt}</td>
<td>{$activite.nom_cpt}</td>
</tr>
{/foreach}
</tbody>
</table>
<!-- footer -->
{include file="admin/_foot.tpl"}