Subversion Repositories Sites.obs-saisons.fr

Rev

Rev 166 | Rev 187 | 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 title="<?= Liens::getCreditImageEspece($espece['nom_scientifique']) ?>" alt="image de l'espece" class="droite" height="120px" src="<?= Liens::getUrlImageEspece($infos_espece['nom_scientifique'],'M') ?>" />
        <span class="intitule_fiche"> <?= $infos_espece['nom_vernaculaire'] ?> </span>
                <span class="valeur_fiche"> (<?= $infos_espece['nom_scientifique'] ?>) </span>
        </div>

    <p class="intitule_fiche description_espece" > <?= $infos_espece['description'] ?></p>
    
    <hr class="separation_section" />
    
    <h3 class="titre_section_fiche" > Observations réalisées </h3>
        <?php foreach ($annees_observations as $annee => $observations) : ?>
        <span class="pliage observations_individu">
                        <h4 id="observation_annee_<?= $annee; ?>" class="annee_observation"> année <?= $annee; ?></h4>
                        <ul>
                                <?php foreach($observations as $stade => $observation) : ?>
                                        <li>
                                                <div class="pliage stade_<?= aControleur::formaterChaineVersClasseCss($stade);?>">
                                                        <h4><?= $stade ?></h4>
                                                        <ul>
                                                                <?php foreach($observation as $num_stade => $date) : ?>
                                                                                <li>
                                                                                        <?= ' stade '.$num_stade.' : '.$date ?>
                                                                                </li>
                                                                        <?php endforeach; ?>
                                                                </ul>
                                                        </div>
                                                </li>
                                        <?php endforeach; ?>
                                </ul>
                        </span>
                <?php endforeach; ?>
                <?php if(empty($annees_observations)) { ?>
                        <div class="informations"> Aucune observation enregistrée pour cet individu</div>
                <?php } ?>
    <hr class="separation_section" />
</div>
<!-- ODS_SAISIE - FIN FICHE INDIVIDU -->