Subversion Repositories Sites.obs-saisons.fr

Compare Revisions

No changes between revisions

Ignore whitespace Rev 30 → Rev 31

/trunk/applications/saisie/squelettes/fiches/station_fiche.tpl.html
New file
0,0 → 1,34
<!-- ODS_SAISIE - DEBUT FICHE STATION -->
<script type="text/javascript" src="http://162.38.234.9/ODS_redesign/applications/saisie/squelettes/js/fiche.js"></script>
<div id="fiche_station">
<h2 id="titre_station"> <?= $infos_station['nom'] ?></h2>
<div class="element_fiche">
<span class="intitule_fiche">Commune / ville :</span>
<span class="valeur_fiche"> <?= $infos_station['commune'] ?> </span>
</div>
<div class="element_fiche">
<span class="intitule_fiche">Milieu :</span>
<span class="valeur_fiche"> <?= $infos_station['milieu'] ?> </span>
</div>
<p> <?= $infos_station['description']; ?> </p>
<div id="conteneur_liens_lat_lon" class="element_fiche" >
<span class="intitule_fiche">Latitude :</span>
<span id="station_lat" class="valeur_fiche"> <?= $infos_station['latitude'] ?> </span>
<span class="intitule_fiche">Longitude :</span>
<span id="station_lon" class="valeur_fiche"> <?= $infos_station['longitude'] ?> </span>
</div>
<div class="conteneur_carte element_fiche" >
<div id="map_canvas" style="width:100%; height:100%"></div>
</div>
<form class="form_afficher_modification" method="post" action="<?= aControleur::getUrlFormulaireModificationStation($id_station); ?>" id="form_afficher_modification">
<input class="droite gros_bouton_validation" type="submit" value="Modifier" />
</form>
</div>
<!-- ODS_SAISIE - FIN FICHE STATION -->
/trunk/applications/saisie/squelettes/fiches/evenement_fiche.tpl.html
--- individu_fiche.tpl.html (revision 0)
+++ individu_fiche.tpl.html (revision 31)
@@ -0,0 +1,62 @@
+<!-- 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" > <?= $infos_espece['description'] ?> </p>
+
+ <hr class="separation_section" />
+
+ <h3 class="titre_section_fiche" > Observations réalisées </h3>
+ <div class="pliage">
+ <h4> année 2006</h4>
+ <ul>
+ <li>
+ <div class="pliage">
+ <h4>Floraison</h4>
+ <ul>
+ <li>
+ Stade 12 : 12/10/2006
+ </li>
+ <li>
+ Stade 35 : 15/10/2006
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div class="pliage">
+ <h4>Scenescence</h4>
+ <ul>
+ <li>
+ Stade 88 : 11/11/2006
+ </li>
+ </ul>
+ </div>
+ </li>
+ <li>
+ <div class="pliage">
+ <h4>Pourriture</h4>
+ <ul>
+ <li>
+ Stade 12 : 12/12/2006
+ </li>
+ <li>
+ Stade 35 : 25/12/2006
+ </li>
+ </ul>
+ </div>
+ </li>
+ </ul>
+ </div>
+
+ <hr class="separation_section" />
+</div>
+<!-- ODS_SAISIE - FIN FICHE INDIVIDU -->