2022-01-26 12:12:42 +01:00
|
|
|
<!-- nav bar -->
|
|
|
|
{include file="%s/templates/_nav.tpl"|args:$plugin_root current_nav="index"}
|
2022-01-14 09:04:45 +01:00
|
|
|
|
2022-01-27 09:02:23 +01:00
|
|
|
<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"}
|
2022-01-26 12:12:42 +01:00
|
|
|
<tr>
|
2022-01-27 09:02:23 +01:00
|
|
|
<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>
|
2022-01-26 12:12:42 +01:00
|
|
|
</tr>
|
2022-01-27 09:02:23 +01:00
|
|
|
{/foreach}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2022-01-14 18:59:18 +01:00
|
|
|
|
2022-01-14 09:04:45 +01:00
|
|
|
<!-- footer -->
|
2022-01-14 18:59:18 +01:00
|
|
|
{include file="admin/_foot.tpl"}
|