Subversion Repositories eFlore/Applications.del

Rev

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

Rev Author Line No. Line
1135 aurelien 1
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
2
<html>
1574 jpm 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
			h3 {
15
				font-size:14px;
16
				color:#454341 !important;
17
				margin:0px;
18
			}
19
			h3 > a {
20
				color:#454341;
21
			}
22
			h1 a, h3 a, h4 a {
23
				color:inherit;
24
				border-bottom:dotted 1px;
25
			}
26
			h3 a {
27
				border-color:#CCCCCC;
28
			}
29
			a {
30
				cursor:pointer;
31
				color:#598000;
32
				text-decoration:none;
33
				border-bottom:1px dotted #95ae5d;
34
			}
35
			a:hover {
36
				color:#FD8C13;
37
				border-bottom:1px dotted #95ae5d;
38
			}
39
			.lire-suite {
40
				padding-left:10px;
41
				background:url(http://www.tela-botanica.org/sites/commun/generique/images/graphisme/petit_carre.png) no-repeat 0px 4px;
42
			}
43
			#titre {
44
				background:none repeat scroll 0 0 #9AC343;
45
				opacity: 0.9;
46
				position: relative;
47
				text-align: center;
48
				width: 100%;
49
			}
50
			#titre h1 {
51
				background: url("http://www.tela-botanica.org/eflore-test/del/img/identiplante_mini.png") no-repeat scroll 150px 7px transparent;
52
				color: #777777;
53
				font-size: 2em;
54
				font-weight: bold;
55
				margin: 0 0 0;
56
				padding: 18px 60px;
57
				text-align: center;
58
				width: 100%;
59
			}
60
			.description_message {
61
				color: #333333;
62
				font-size: 1.1em;
63
				font-style: italic;
64
				padding-top: 10px;
65
			}
66
			-->
67
		</style>
68
	</head>
69
	<body>
70
		<div id="titre">
71
			<h1>IdentiPlante - Récapitulatif des observations à déterminer </h1>
72
		</div>
73
		<div class="description_message">
74
			Ce message récapitule l'ensemble des observations dont l'auteur a demandé confirmation ou détermination via
75
			l'outil <a href="http://www.tela-botanica.org/appli:del" >Identiplante</a>
76
			<br /><br />
77
		</div>
1135 aurelien 78
 
1574 jpm 79
		<?php foreach($liste_observations as $observation) : ?>
80
			<?php $nom_ret = (trim($observation['nom_propose']) != '') ? $observation['nom_propose'] : 'Espèce indéterminée'; ?>
81
			<h3>
82
				<a href="<?= $observation['lien']; ?>">Observation <?= $observation['id_observation'] ?> - <em><?= $nom_ret; ?></em> </a>
83
				observée le <?= $observation['date']; ?> à <?= $observation['zone_geo']; ?>
84
			</h3>
85
			<br />
86
		<?php endforeach ; ?>
87
	</body>
1135 aurelien 88
</html>