Subversion Repositories eFlore/Applications.cel

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
2182 mathias 1
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
2
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="fr" lang="fr">
3
	<head>
4
		<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
5
		<meta http-equiv="Content-style-type" content="text/css" />
6
		<meta http-equiv="Content-script-type" content="text/javascript" />
7
		<meta http-equiv="Content-language" content="fr" />
8
 
9
		<meta name="revisit-after" content="15 days" />
10
        <meta name="robots" content="index,follow" />
11
        <meta name="author" content="Jean-Pascal MILCENT" />
12
        <meta name="keywords" content="Statistiques, CEL, Tela Botanica, graphiques" />
13
        <meta name="description" content="Graphiques et statistiques sur les observations et images du Carnet en Ligne (CEL)" />
14
 
15
		<title>Statistiques du Carnet En Ligne</title>
16
		<style>
17
			img{display:block;margin:0.5em;border:1px solid black;}
18
			hr.nettoyeur {clear:both;width:0;}
19
			.flottant-gauche img{float:left;}
20
		</style>
21
 
22
		<link rel="stylesheet" type="text/css" href="http://www.tela-botanica.org/commun/bootstrap/3.1.0/css/bootstrap.min.css" />
23
 
24
		<!-- Stats : Google Analytics -->
25
		<script type="text/javascript">
26
			//<![CDATA[
27
			var _gaq = _gaq || [];
28
			_gaq.push(['_setAccount', 'UA-20092557-1']);
29
			_gaq.push(['_trackPageview']);
30
 
31
			(function() {
32
			  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
33
			  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
34
			  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
35
			})();
36
			//]]>
37
		</script>
38
	</head>
39
 
40
	<body>
41
		<h1>Statistiques du CEL</h1>
42
		<h2>Les <?= $donnees['entete']->nombre ?> plus importants contributeurs depuis <?= $donnees['entete']->jours ?> jours</h2>
43
		<table class="table">
44
			<tr>
45
				<td>Contributeur(trice)</td>
46
				<?php if($donnees['entete']->critere != "img"): ?>
47
					<td>Nombre d'observations</td>
48
				<?php endif; ?>
49
				<?php if($donnees['entete']->critere != "obs"): ?>
50
					<td>Nombre d'images</td>
51
				<?php endif; ?>
52
				<?php if($donnees['entete']->critere == null): ?>
53
					<td>Somme des données publiées</td>
54
				<?php endif; ?>
55
			</tr>
56
			<?php foreach($donnees['resultats'] as $util): ?>
57
			<tr>
58
				<td><?= $util->intitule_utilisateur ?></td>
59
				<?php if($donnees['entete']->critere != "img"): ?>
60
					<td><?= $util->nombreObs ?></td>
61
				<?php endif; ?>
62
				<?php if($donnees['entete']->critere != "obs"): ?>
63
					<td><?= $util->nombreImg ?></td>
64
				<?php endif; ?>
65
				<?php if($donnees['entete']->critere == null): ?>
66
					<td><?= $util->somme ?></td>
67
				<?php endif; ?>
68
			</tr>
69
			<?php endforeach; ?>
70
		</table>
71
 
72
		<?php include('navigation.tpl.html') ?>
73
	 </body>
74
</html>