Subversion Repositories Sites.tela-botanica.org

Compare Revisions

Ignore whitespace Rev 299 → Rev 300

/trunk/client/stat_distribution/squelettes/stdi_tableau.tpl.html
New file
0,0 → 1,28
<!-- STAT_DISTRIBUTION : tableau - DEBUT -->
<h1><?=$titre;?></h1>
<?php if ($erreur) : ?>
 
<p class="pap_erreur"><?=$erreur;?></p>
 
<?php elseif ($information) : ?>
 
<p class="zone_info"><?=$information;?></p>
 
<?php else : ?>
 
<table class="table_cadre">
<tr>
<th class="">Pays</th>
<th class="">Nombre d'inscrits</td>
<th class="">Pourcentage</td>
</tr>
<?php foreach ($tab_donnees as $donnee) : ?>
<tr>
<th class=""><?=$donnee['libelle'];?></th>
<td class=""><?=$donnee['nombre'];?></td>
<td class=""><?=$donnee['pourcentage'];?></td>
</tr>
<?php endforeach; ?>
</table>
<?php endif; ?>
<!-- STAT_DISTRIBUTION : tableau - FIN -->