31 |
aurelien |
1 |
<!-- ODS_SAISIE - DEBUT FICHE STATION -->
|
|
|
2 |
<div id="fiche_station">
|
|
|
3 |
<h2 id="titre_station"> <?= $infos_station['nom'] ?></h2>
|
|
|
4 |
|
|
|
5 |
<div class="element_fiche">
|
|
|
6 |
<span class="intitule_fiche">Commune / ville :</span>
|
|
|
7 |
<span class="valeur_fiche"> <?= $infos_station['commune'] ?> </span>
|
|
|
8 |
</div>
|
|
|
9 |
|
|
|
10 |
<div class="element_fiche">
|
|
|
11 |
<span class="intitule_fiche">Milieu :</span>
|
|
|
12 |
<span class="valeur_fiche"> <?= $infos_station['milieu'] ?> </span>
|
|
|
13 |
</div>
|
102 |
aurelien |
14 |
|
|
|
15 |
<div class="element_fiche">
|
|
|
16 |
<span class="intitule_fiche">Altitude :</span>
|
|
|
17 |
<span class="valeur_fiche"> <?= $infos_station['altitude'] ?> m </span>
|
|
|
18 |
</div>
|
31 |
aurelien |
19 |
|
102 |
aurelien |
20 |
<!-- <p> <?= $infos_station['description']; ?> </p> -->
|
31 |
aurelien |
21 |
|
|
|
22 |
<div id="conteneur_liens_lat_lon" class="element_fiche" >
|
|
|
23 |
<span class="intitule_fiche">Latitude :</span>
|
|
|
24 |
<span id="station_lat" class="valeur_fiche"> <?= $infos_station['latitude'] ?> </span>
|
|
|
25 |
|
|
|
26 |
<span class="intitule_fiche">Longitude :</span>
|
|
|
27 |
<span id="station_lon" class="valeur_fiche"> <?= $infos_station['longitude'] ?> </span>
|
|
|
28 |
</div>
|
|
|
29 |
|
|
|
30 |
<div class="conteneur_carte element_fiche" >
|
|
|
31 |
<div id="map_canvas" style="width:100%; height:100%"></div>
|
|
|
32 |
</div>
|
|
|
33 |
|
210 |
aurelien |
34 |
<form class="formulaire_en_ligne" method="post" action="<?= Liens::getUrlFormulaireAjoutEspece($id_station); ?>" id="form_afficher_saisie_espece">
|
|
|
35 |
<input class="gauche gros_bouton_validation" type="submit" value="Nouvelle espèce" />
|
|
|
36 |
</form>
|
|
|
37 |
|
|
|
38 |
<form class="formulaire_en_ligne" method="post" action="<?= Liens::getUrlFormulaireModificationStation($id_station); ?>" id="form_afficher_modification">
|
|
|
39 |
<input class=" droite gros_bouton_validation" type="submit" value="Modifier la station" />
|
|
|
40 |
</form>
|
|
|
41 |
|
|
|
42 |
<hr class="separation_invisible" />
|
|
|
43 |
|
|
|
44 |
<!-- <?php if(count($infos_station['individus']) == 0) { ?> -->
|
|
|
45 |
<form class="formulaire_suppression_station droite" method="post" action="<?= Liens::getUrlFormulaireSuppressionStation(); ?>" id="form_supprimer_station">
|
|
|
46 |
<input type="hidden" id="id_station_a_supprimer" name="id_station_a_supprimer" value="<?= $infos_station['id']; ?>" />
|
|
|
47 |
<input class="gauche gros_bouton_validation lien_suppression" type="submit" value="Supprimer" />
|
|
|
48 |
</form>
|
|
|
49 |
<!--<?php } ?> -->
|
|
|
50 |
|
|
|
51 |
<?php if(isset($donnees['erreurs'])) { ?>
|
|
|
52 |
<p class="attention"> <?= $donnees['erreurs']; ?> </p>
|
|
|
53 |
<?php } ?>
|
31 |
aurelien |
54 |
</div>
|
|
|
55 |
<!-- ODS_SAISIE - FIN FICHE STATION -->
|