31 lines
889 B
Smarty
31 lines
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"} |