Subversion Repositories eFlore/Applications.cel

Rev

Rev 2182 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 2182 Rev 2202
Line 1... Line -...
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>
-
 
75
1
<h2>Les <?= $donnees['entete']->nombre ?> plus importants contributeurs depuis <?= $donnees['entete']->jours ?> jours</h2>
-
 
2
<table class="table">
-
 
3
	<tr>
-
 
4
		<td>Contributeur(trice)</td>
-
 
5
		<?php if($donnees['entete']->critere != "img"): ?>
-
 
6
			<td>Nombre d'observations</td>
-
 
7
		<?php endif; ?>
-
 
8
		<?php if($donnees['entete']->critere != "obs"): ?>
-
 
9
			<td>Nombre d'images</td>
-
 
10
		<?php endif; ?>
-
 
11
		<?php if($donnees['entete']->critere == null): ?>
-
 
12
			<td>Somme des données publiées</td>
-
 
13
		<?php endif; ?>
-
 
14
	</tr>
-
 
15
	<?php foreach($donnees['resultats'] as $util): ?>
-
 
16
	<tr>
-
 
17
		<td><?= $util->intitule_utilisateur ?></td>
-
 
18
		<?php if($donnees['entete']->critere != "img"): ?>
-
 
19
			<td><?= $util->nombreObs ?></td>
-
 
20
		<?php endif; ?>
-
 
21
		<?php if($donnees['entete']->critere != "obs"): ?>
-
 
22
			<td><?= $util->nombreImg ?></td>
-
 
23
		<?php endif; ?>
-
 
24
		<?php if($donnees['entete']->critere == null): ?>
-
 
25
			<td><?= $util->somme ?></td>
-
 
26
		<?php endif; ?>
-
 
27
	</tr>
-
 
28
	<?php endforeach; ?>
-
 
29
</table>
-
 
30
76
31