Subversion Repositories eFlore/Applications.del

Rev

Rev 2038 | Rev 2042 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1783 mathias 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
			h1 > a {
12
				color:#fd8c13;
13
			}
14
			.emphase {
15
				color: #777777;
16
			}
17
			h3 {
18
				font-size:14px;
19
				color:#454341 !important;
20
				margin:0px;
21
			}
22
			h3 > a {
23
				color:#454341;
24
			}
25
			h1 a, h3 a, h4 a {
26
				color: inherit;
27
				border-bottom: dotted 1px;
28
			}
29
			h3 a {
30
				border-color:#CCCCCC;
31
			}
32
			a {
33
				cursor: pointer;
34
				color:#598000;
35
				text-decoration:none;
36
				border-bottom:1px dotted #95ae5d;
37
			}
38
			a:hover {
39
				color:#FD8C13;
40
				border-bottom:1px dotted #95ae5d;
41
			}
42
			.lire-suite {
43
				padding-left:10px;
44
				background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
45
			}
46
			.description_message {
47
				color: #333333;
48
				font-size: 1.1em;
49
				font-style: italic;
50
				padding-top: 10px;
51
			}
52
			-->
53
		</style>
54
	</head>
55
	<body>
56
		<div>
57
			<h1><span class="emphase">IdentiPlante</span> : un telabotaniste vous a aid&eacute; </h1>
58
		</div>
2038 mathias 59
		<div class="salutations">
60
			Bonjour <?= $auteur_formate ?>,
1783 mathias 61
		</div>
2038 mathias 62
		<?php if(count($liste_observations) > 0): ?>
63
			<div class="description_message">
64
				Un Telabotaniste vient de proposer une nouvelle d&eacute;termination ou de faire un commentaire concernant vos données :<br />
65
			</div>
66
		<?php endif; ?>
1783 mathias 67
 
68
		<?php foreach ($liste_observations as $observation) : ?>
69
			<h3>
70
				<span class="emphase">--&gt;</span>
71
				<a href="<?= $observation['lien']; ?>">
72
					observation <?= $observation['id'] ?> - <em><?= $observation['nom_sci']; ?></em>
73
				</a>
74
				observ&eacute; le <?= $observation['date']; ?> &agrave; <?= $observation['lieu']; ?>
75
			</h3>
76
			<?php foreach ($observation['commentaires'] as $commentaire) : ?>
77
				<?php if ($commentaire['nom_sel'] == '') : ?>
78
					<div class="commentaire">
79
						&nbsp;&nbsp;- <?= $commentaire['auteur'] ?> a &eacute;crit <em>"<?= $commentaire['texte'] ?>"</em>
80
					</div>
81
				<?php else : ?>
82
					<div class="proposition">
2040 mathias 83
						&nbsp;&nbsp;- <?= $commentaire['auteur'] ?> a propos&eacute; <em><?= $commentaire['nom_sel'] ?></em>
1783 mathias 84
						<?php if ($commentaire['texte'] != '') : ?>
85
							et a &eacute;crit : <em>"<?= $commentaire['texte'] ?>"</em>
86
						<?php endif; ?>
2040 mathias 87
						<br />
1783 mathias 88
					</div>
89
				<?php endif; ?>
90
			<?php endforeach ; ?>
91
			<br />
92
		<?php endforeach ; ?>
93
 
2038 mathias 94
		<?php if(count($liste_commentaires) > 0): ?>
95
			<div class="description_message">
96
				Un Telabotaniste vient de r&eacute;pondre &agrave; un de vos commentaires ou une de vos propositions :
97
			</div>
98
		<?php endif; ?>
99
 
100
		<?php foreach ($liste_commentaires as $co) : ?>
101
			<h3>
102
				<span class="emphase">--&gt;</span>
103
				<a href="<?= $co['lien']; ?>">
104
					observation <?= $co['id_obs'] ?> - <em><?= $co['nom_sci']; ?></em>
105
				</a>
106
				observ&eacute; le <?= $co['date']; ?> &agrave; <?= $co['lieu']; ?>
107
			</h3>
108
		<?php if ($co['nom_sci_co'] == '') : ?>
109
			&nbsp;&nbsp;&nbsp;&nbsp;En r&eacute;ponse &agrave; votre commentaire "<?= $co['texte_co'] ?>",
110
		<?php else : ?>
111
			<div class="proposition">
112
				&nbsp;&nbsp;&nbsp;&nbsp;En r&eacute;ponse &agrave; votre proposition "<?= $co['nom_sci_co'] ?>"<?php if($co['texte_co'] != ''): ?> accompagn&eacute;e du commentaire "<?= $co['texte_co'] ?>"<?php endif; ?>,
113
			</div>
114
		<?php endif; ?>
115
			<?php foreach ($co['commentaires'] as $commentaire) : ?>
116
				<div class="commentaire">
117
					&nbsp;&nbsp;- <?= $commentaire['auteur'] ?> a &eacute;crit <em>"<?= $commentaire['texte'] ?>"</em>
118
				</div>
119
			<?php endforeach ; ?>
120
			<br />
121
		<?php endforeach ; ?>
122
 
1783 mathias 123
		<h2>Je souhaite poursuivre ma participation</h2>
124
		<ul>
125
			<li>
1784 mathias 126
				En m'<a href="http://www.tela-botanica.org/inscription">inscrivant gratuitement à Tela Botanica</a>
1783 mathias 127
			</li>
128
			<li>
1784 mathias 129
				En utilisant <a href="http://www.tela-botanica.org/page:validation_donnees">Identiplante</a> l'outil de détermination collaborative en ligne
1783 mathias 130
			</li>
131
			<li>
1784 mathias 132
				En gérant finement mes données avec le <a href="http://www.tela-botanica.org/page:cel">Carnet en Ligne</a>
1783 mathias 133
			</li>
134
		</ul>
135
 
136
		Bonne continuation sur nos outils botaniques !<br />
137
		L'&eacute;quipe de Tela Botanica<br />
138
		<div>---------</div>
139
		<br/>
140
		<small>
141
			Ce message vous est envoy&eacute; par l'interm&eacute;diaire de l'application IdentiPlante du r&eacute;seau Tela Botanica.
142
			<a href="http://www.tela-botanica.org/appli:identiplante">http://www.tela-botanica.org/appli:identiplante </a>
143
		</small>
144
		<br />
145
		<small>
146
			Si vous ne souhaitez plus recevoir ce mail d&eacute;cochez la case dans vos pr&eacute;f&eacute;rences sur l'interface d'IdentiPlante.
147
		</small>
148
	</body>
149
</html>