recusfiscaux/templates/index.tpl
engel 0c7e90e494 Réorganisation fichiers
FossilOrigin-Name: 7c3c6934177943e0bb0386a23b3f359e703eb88afbf34f58ba8663b3a1802124
2022-01-27 08:02:23 +00:00

31 lines
No EOL
889 B
Smarty

<!-- nav bar -->
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}
<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"}