Line 2... |
Line 2... |
2 |
<div>
|
2 |
<div>
|
3 |
<h2> Observations pour l'année <?= $annee ?></h2>
|
3 |
<h2> Observations pour l'année <?= $annee ?></h2>
|
4 |
<form id="form_modif_observation" name="form_modif_observation" method="post" action="<?= Liens::getUrlValidationFormulaireModificationObservation($id_station,$id_espece, $id_individu_a_modifier_observation, $annee) ?>" >
|
4 |
<form id="form_modif_observation" name="form_modif_observation" method="post" action="<?= Liens::getUrlValidationFormulaireModificationObservation($id_station,$id_espece, $id_individu_a_modifier_observation, $annee) ?>" >
|
5 |
<table id="saisie_modif_evenements">
|
5 |
<table id="saisie_modif_evenements">
|
6 |
<tr>
|
6 |
<tr>
|
7 |
<th></th>
|
7 |
<th></th>
|
8 |
<?php foreach($evenements as $evenement) : ?>
|
8 |
<?php foreach($evenements as $evenement) : ?>
|
9 |
<th class="stade_<?=$evenement['abreviation'] ?>" colspan="<?=count($evenement['stades']) ?>">
|
9 |
<th class="stade_<?=$evenement['abreviation'] ?>" colspan="<?=count($evenement['stades']) ?>">
|
10 |
<div class="evenement"><?= $evenement['nom'] ?></div>
|
10 |
<div class="evenement"><?= $evenement['nom'] ?></div>
|
11 |
</th>
|
11 |
</th>
|
12 |
<?php endforeach; ?>
|
12 |
<?php endforeach; ?>
|
13 |
<th></th>
|
13 |
<th></th>
|
14 |
</tr>
|
14 |
</tr>
|
15 |
|
15 |
|
16 |
<tr>
|
16 |
<tr>
|
17 |
<th> stades </th>
|
17 |
<th> stades </th>
|
18 |
<?php foreach($evenements as $evenement) : ?>
|
18 |
<?php foreach($evenements as $evenement) : ?>
|
19 |
<?php foreach($evenement['stades'] as $stade) : ?>
|
19 |
<?php foreach($evenement['stades'] as $stade) : ?>
|
20 |
<th class="stade_evenement">
|
20 |
<th class="stade_evenement">
|
21 |
<?= $stade ?>
|
21 |
<?= $stade ?>
|
22 |
</th>
|
22 |
</th>
|
23 |
<?php endforeach; ?>
|
23 |
<?php endforeach; ?>
|
24 |
<?php endforeach; ?>
|
24 |
<?php endforeach; ?>
|
25 |
</tr>
|
25 |
</tr>
|
26 |
|
26 |
|
27 |
<?php foreach ($individus as $individu) : ?>
|
27 |
<?php foreach ($individus as $individu) : ?>
|
28 |
<tr class="modification_observations_individu" id="modification_observations_individu_<?= $individu['id_individu'] ?>">
|
28 |
<tr class="modification_observations_individu" id="modification_observations_individu_<?= $individu['id_individu'] ?>">
|
29 |
<td>
|
29 |
<td>
|
30 |
<a title="cliquez pour accéder à la fiche de cet individu" href="<?= Liens::getUrlConsultationFicheIndividu($id_station, $id_espece, $individu['id_individu']); ?>"><?= $individu['nom'] ?></a>
|
30 |
<a title="cliquez pour accéder à la fiche de cet individu" href="<?= Liens::getUrlConsultationFicheIndividu($id_station, $id_espece, $individu['id_individu']); ?>"><?= $individu['nom'] ?></a>
|
31 |
</td>
|
31 |
</td>
|
Line 38... |
Line 38... |
38 |
<input type="text" maxlength="10" size="10" name="observation_<?= $id_stade ?>" id="observation_<?= $id_stade ?>" value="<?= $valeur_stade_individu ?>" />
|
38 |
<input type="text" maxlength="10" size="10" name="observation_<?= $id_stade ?>" id="observation_<?= $id_stade ?>" value="<?= $valeur_stade_individu ?>" />
|
39 |
<?php } else { ?>
|
39 |
<?php } else { ?>
|
40 |
<?php if (isset($individu['observations'][$annee][$nom_evenement][$stade])) { ?>
|
40 |
<?php if (isset($individu['observations'][$annee][$nom_evenement][$stade])) { ?>
|
41 |
<?= $individu['observations'][$annee][$nom_evenement][$stade]; ?>
|
41 |
<?= $individu['observations'][$annee][$nom_evenement][$stade]; ?>
|
42 |
<?php } else { ?>
|
42 |
<?php } else { ?>
|
43 |
-
|
43 |
-
|
44 |
<?php } ?>
|
44 |
<?php } ?>
|
45 |
<?php }?>
|
45 |
<?php }?>
|
46 |
</div>
|
46 |
</div>
|
47 |
</td>
|
47 |
</td>
|
48 |
<?php endforeach; ?>
|
48 |
<?php endforeach; ?>
|
49 |
<?php endforeach; ?>
|
49 |
<?php endforeach; ?>
|
50 |
<td>
|
50 |
<td>
|
51 |
<?php if ($individu['id_individu'] == $id_individu_a_modifier_observation) { ?>
|
51 |
<?php if ($individu['id_individu'] == $id_individu_a_modifier_observation) { ?>
|
52 |
<input type="submit" class="valider_formulaire icone_s" value="OK" title="valider" />
|
52 |
<input type="submit" class="valider_formulaire icone_s" value="OK" title="valider" />
|
53 |
<?php } ?>
|
53 |
<?php } ?>
|
54 |
</td>
|
54 |
</td>
|
55 |
</tr>
|
55 |
</tr>
|
56 |
<?php endforeach; ?>
|
56 |
<?php endforeach; ?>
|
57 |
</table>
|
57 |
</table>
|
58 |
<input type="hidden" id="id_individu" name="id_individu" value="<?= $id_individu_a_modifier_observation ?>" />
|
58 |
<input type="hidden" id="id_individu" name="id_individu" value="<?= $id_individu_a_modifier_observation ?>" />
|
59 |
<input type="hidden" id="annee_en_cours" name="annee_en_cours" value="<?= $annee ?>" />
|
59 |
<input type="hidden" id="annee_en_cours" name="annee_en_cours" value="<?= $annee ?>" />
|
60 |
</form>
|
60 |
</form>
|
61 |
</div>
|
61 |
</div>
|
62 |
<!-- ODS_SAISIE - FIN MODIFICATION EVENEMENTS -->
|
- |
|
63 |
|
62 |
<!-- ODS_SAISIE - FIN MODIFICATION EVENEMENTS -->
|
- |
|
63 |
|