Rev 103 | Rev 166 | 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="<?= Liens::getUrlImageEspece($infos_espece['id_espece']) ?>" />
<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>
<?php foreach ($annees_observations as $annee => $observations) : ?>
<span class="pliage observations_individu">
<h4 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 -->