Subversion Repositories eFlore/Applications.cel

Rev

Rev 697 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 697 Rev 700
Line 1... Line -...
1
<h2>Nombres</h2>
-
 
2
<ul>
-
 
3
	<li>Nombre d'observations publiques / total : <strong><?=number_format($observationsPubliques, 0, ',', ' ')?></strong> / <strong><?=number_format($observations, 0, ',', ' ')?></strong></li>
-
 
4
	<li>Nombre d'images : <strong><?=number_format($images, 0, ',', ' ')?></strong></li>
-
 
5
	<li>Nombre d'images liées aux observations : <strong><?=number_format($imagesLiees, 0, ',', ' ')?></strong></li>
-
 
6
	<li>Nombre d'observations liées aux images : <strong><?=number_format($observationsLiees, 0, ',', ' ')?></strong></li>
-
 
7
	<li>Moyenne images par observation : <strong><?=number_format($moyImagesParObs, 2, ',', ' ')?></strong></li>
-
 
8
	<li title="Hors observations géoréférencées mais non liées à une commune.">Nombre de communes possédant des observations : <strong><?=number_format($communes, 0, ',', ' ')?></strong></li>
-
 
9
	<li>Nombre d'observations par communes (mini / moyenne / maxi) : <strong><?=number_format($observationsParCommunesMin, 0, ',', ' ')?></strong> / <strong><?=number_format($observationsParCommunesMoyenne, 2, ',', ' ')?></strong> / <strong><?=number_format($observationsParCommunesMax, 0, ',', ' ')?></strong></li>
-
 
10
</ul>
-
 
11
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
		<title>Statistiques du Carnet En Ligne</title>
-
 
15
		<style>
-
 
16
			img{display:block;margin:0.5em;border:1px solid black;}
-
 
17
			hr.nettoyeur {clear:both;width:0;}
-
 
18
			.flottant-gauche img{float:left;}
-
 
19
		</style>
-
 
20
		
-
 
21
		<!-- Stats : Google Analytics -->
-
 
22
		<script type="text/javascript">
-
 
23
			//<![CDATA[
-
 
24
			var _gaq = _gaq || [];
-
 
25
			_gaq.push(['_setAccount', 'UA-20092557-1']);
-
 
26
			_gaq.push(['_trackPageview']);
-
 
27
			
-
 
28
			(function() {
-
 
29
			  var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
-
 
30
			  ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
-
 
31
			  var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
-
 
32
			})();
-
 
33
			//]]>
-
 
34
		</script>
-
 
35
	</head>
-
 
36
	<body>
-
 
37
		<?php $i=0;?>
-
 
38
		<h1>Statistiques du CEL <?=(isset($utilisateur_nom_prenom) ? '- '.$utilisateur_nom_prenom : '')?> <?=(isset($taxon) ? '- '.$taxon : '')?></h1>
-
 
39
		<?php include('filtres.tpl.html') ?>
-
 
40
		<div class="flottant-gauche">
-
 
41
			<?php include('nbres.tpl.html')?>
-
 
42
		</div>
-
 
43
		<hr class="nettoyeur" />
-
 
44
		<div class="flottant-gauche">
-
 
45
			<?php include('navigation.tpl.html') ?>
-
 
46
		</div>
-
 
47
	 </body>
-
 
48
</html>
-
 
49
12
50