Subversion Repositories eFlore/Applications.del

Rev

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

Rev 2012 Rev 2017
Line 1... Line 1...
1
<h2>Pictoflora - Images</h2>
1
<h2>Pictoflora - Images</h2>
2
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
-
 
3
<ul>
-
 
4
	<li>Nombre d'images au total : <strong><?=$nbImagesTotal ?></strong></li>
-
 
5
</ul>
-
 
6
2
<?= isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "" ?>
-
 
3
<table class="table table-hover">
-
 
4
<thead>
-
 
5
	<tr>
-
 
6
		<th>Indicateur</th>
-
 
7
		<th>Nombre</th>
-
 
8
		<th>Moyenne par mois</th>
-
 
9
	</tr>
-
 
10
</thead>
-
 
11
<tbody>
-
 
12
	<tr><td>Nombre total d'images</td><td><?=$nbImagesTotal ?></td><td><?=$nbImagesTotalMPM ?></td></tr>
-
 
13
	<tr><td>Nombre d'images ayant au moins un mot-clé</td><td><?=$nbImagesAyantTag ?></td><td><?=$nbImagesAyantTagMPM ?></td></tr>
-
 
14
	<tr><td>Nombre d'images ayant au moins un vote</td><td><?=$nbImagesAyantVote ?></td><td><?=$nbImagesAyantVoteMPM ?></td></tr>
-
 
15
	<tr><td>Nombre d'images de l'année ayant au moins un mot-clé</td><td><?=$nbImagesAnneeAyantTag ?></td><td><?=$nbImagesAnneeAyantTagMPM ?></td></tr>
-
 
16
	<tr><td>Nombre d'images de l'année ayant au moins un vote</td><td><?=$nbImagesAnneeAyantVote ?></td><td><?=$nbImagesAnneeAyantVoteMPM ?></td></tr>
-
 
17
</tbody>
-
 
18
</table>
-
 
19
7
20