| 1020 |
aurelien |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
|
5 |
<style type="text/css">
|
|
|
6 |
<!--
|
|
|
7 |
body {
|
|
|
8 |
font-family: Arial,Helvetica,Verdana,sans-serif;
|
|
|
9 |
font-size: 14px;
|
|
|
10 |
}
|
|
|
11 |
|
|
|
12 |
h1 > a {
|
|
|
13 |
color:#fd8c13;
|
|
|
14 |
}
|
|
|
15 |
|
|
|
16 |
h3 {
|
|
|
17 |
font-size:14px;
|
|
|
18 |
color:#454341 !important;
|
|
|
19 |
margin:0px;
|
|
|
20 |
}
|
|
|
21 |
|
|
|
22 |
h3 > a {
|
|
|
23 |
color:#454341;
|
|
|
24 |
}
|
|
|
25 |
|
|
|
26 |
h1 a, h3 a, h4 a {
|
|
|
27 |
color: inherit;
|
|
|
28 |
border-bottom: dotted 1px;
|
|
|
29 |
}
|
|
|
30 |
h3 a {
|
|
|
31 |
border-color:#CCCCCC;
|
|
|
32 |
}
|
|
|
33 |
a {
|
| 1036 |
aurelien |
34 |
cursor: pointer;
|
| 1020 |
aurelien |
35 |
color:#598000;
|
|
|
36 |
text-decoration:none;
|
|
|
37 |
border-bottom:1px dotted #95ae5d;
|
|
|
38 |
}
|
|
|
39 |
a:hover {
|
|
|
40 |
color:#FD8C13;
|
|
|
41 |
border-bottom:1px dotted #95ae5d;
|
|
|
42 |
}
|
|
|
43 |
.lire-suite {
|
|
|
44 |
padding-left:10px;
|
|
|
45 |
background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
|
|
|
46 |
}
|
|
|
47 |
|
|
|
48 |
#titre {
|
|
|
49 |
background: none repeat scroll 0 0 #9AC343;
|
|
|
50 |
opacity: 0.9;
|
|
|
51 |
position: relative;
|
|
|
52 |
text-align: center;
|
|
|
53 |
width: 100%;
|
|
|
54 |
}
|
|
|
55 |
|
|
|
56 |
#titre h1 {
|
|
|
57 |
background: url("http://www.tela-botanica.org/eflore-test/del/img/identiplante_mini.png") no-repeat scroll 150px 7px transparent;
|
|
|
58 |
color: #777777;
|
|
|
59 |
font-size: 2em;
|
|
|
60 |
font-weight: bold;
|
|
|
61 |
margin: 0 0 0;
|
|
|
62 |
padding: 18px 60px;
|
|
|
63 |
text-align: center;
|
|
|
64 |
width: 100%;
|
|
|
65 |
}
|
|
|
66 |
|
|
|
67 |
.description_message {
|
|
|
68 |
color: #333333;
|
|
|
69 |
font-size: 1.1em;
|
|
|
70 |
font-style: italic;
|
|
|
71 |
padding-top: 10px;
|
|
|
72 |
}
|
|
|
73 |
-->
|
|
|
74 |
</style>
|
|
|
75 |
</head>
|
|
|
76 |
<body>
|
|
|
77 |
<div id="titre">
|
|
|
78 |
<h1>IdentiPlante - Récapitulatif de vos observations </h1>
|
|
|
79 |
</div>
|
|
|
80 |
<div class="description_message">
|
|
|
81 |
Ce message récapitule l'ensemble des déterminations et commentaires réalisés aujourd'hui sur vos observations via
|
|
|
82 |
l'outil <a href="http://www.tela-botanica.org/appli:del" >Identiplante</a>
|
|
|
83 |
<br /><br />
|
|
|
84 |
</div>
|
|
|
85 |
|
|
|
86 |
<?php foreach($liste_observations as $observation) : ?>
|
|
|
87 |
<?php $nom_ret = (trim($observation['nom_ret']) != '') ? $observation['nom_ret'] : 'Espèce indéterminée'; ?>
|
| 1136 |
aurelien |
88 |
<h3><a href="<?= $observation['lien']; ?>">Observation <?= $observation['id_observation'] ?> - <em><?= $nom_ret; ?></em></a>
|
| 1020 |
aurelien |
89 |
observée le <?= $observation['date']; ?> à <?= $observation['zone_geo']; ?></h3>
|
|
|
90 |
<?php foreach($observation['commentaires'] as $commentaire) : ?>
|
|
|
91 |
<?php if($commentaire['nom_sel'] == '') { ?>
|
|
|
92 |
<div class="commentaire">
|
|
|
93 |
- <?= $commentaire['auteur'] ?> a écrit <em>"<?= $commentaire['texte'] ?>"</em>
|
|
|
94 |
</div>
|
|
|
95 |
<?php } else { ?>
|
|
|
96 |
<div class="proposition">
|
|
|
97 |
- <?= $commentaire['auteur'] ?> a proposé <em><?= $commentaire['nom_sel'] ?></em><br />
|
|
|
98 |
<?php if($commentaire['texte'] != '') { ?>
|
|
|
99 |
et a écrit : <em>"<?= $commentaire['texte'] ?>"</em>
|
|
|
100 |
<?php } ?>
|
|
|
101 |
</div>
|
|
|
102 |
<?php } ?>
|
|
|
103 |
<?php endforeach ; ?>
|
|
|
104 |
<br />
|
|
|
105 |
<?php endforeach ; ?>
|
|
|
106 |
</body>
|
|
|
107 |
</html>
|