Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 31 | Rev 49 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<!-- ODS_SAISIE - DEBUT FICHE INDIVIDU -->
<div id="fiche_individu">
    <h2 class="titre_fiche"> <?= $infos_individu['nom'] ?></h2>
    <hr class="separation_section" />
    
    <h3 class="titre_section_fiche"> Espèce </h3>
    <div class="informations_espece">
        <img alt="image de l'espece" class="droite" width="100px" src="<?= $infos_espece['url_image'] ?>" />
        <span class="intitule_fiche"> <?= $infos_espece['nom_vernaculaire'] ?> </span>
                <span class="valeur_fiche"> (<?= $infos_espece['nom_scientifique'] ?>) </span>
        </div>

    <p class="intitule_fiche" > <a href="<?= $infos_espece['description'] ?>"> Voir la description sur wikipedia </a></p>
    
    <hr class="separation_section" />
    
    <h3 class="titre_section_fiche" > Observations réalisées </h3>
        <div class="pliage">
                <ul>
                        <?php foreach ($annees_observations as $annee => $observations) : ?>
                                <li>
                                        <h4> année <?= $annee; ?></h4>
                                        <ul>
                                                <?php foreach($observations as $stade => $observation) : ?>
                                                        <div class="pliage">
                                                                <h4><?= $stade ?></h4>
                                                                <ul>
                                                                        <?php foreach($observation as $num_stade => $date) : ?>
                                                                                        <li>
                                                                                                <?= $stade.' '.$num_stade.' : '.$date ?>
                                                                                        </li>
                                                                                <?php endforeach; ?>
                                                                        </ul>
                                                                </div>
                                                        <?php endforeach; ?>
                                                </ul>
                                        </li>
                                <?php endforeach; ?>
                        </ul>
                </div>
    <hr class="separation_section" />
</div>
<!-- ODS_SAISIE - FIN FICHE INDIVIDU -->