Subversion Repositories Sites.tela-botanica.org

Rev

Blame | Last modification | View Log | RSS feed

<!-- 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 -->