Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 2012 → Rev 2017

/trunk/widget/modules/stats/squelettes/images.tpl.html
1,5 → 1,18
<h2>Pictoflora - Images</h2>
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
<ul>
<li>Nombre d'images au total : <strong><?=$nbImagesTotal ?></strong></li>
</ul>
<?= isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "" ?>
<table class="table table-hover">
<thead>
<tr>
<th>Indicateur</th>
<th>Nombre</th>
<th>Moyenne par mois</th>
</tr>
</thead>
<tbody>
<tr><td>Nombre total d'images</td><td><?=$nbImagesTotal ?></td><td><?=$nbImagesTotalMPM ?></td></tr>
<tr><td>Nombre d'images ayant au moins un mot-clé</td><td><?=$nbImagesAyantTag ?></td><td><?=$nbImagesAyantTagMPM ?></td></tr>
<tr><td>Nombre d'images ayant au moins un vote</td><td><?=$nbImagesAyantVote ?></td><td><?=$nbImagesAyantVoteMPM ?></td></tr>
<tr><td>Nombre d'images de l'année ayant au moins un mot-clé</td><td><?=$nbImagesAnneeAyantTag ?></td><td><?=$nbImagesAnneeAyantTagMPM ?></td></tr>
<tr><td>Nombre d'images de l'année ayant au moins un vote</td><td><?=$nbImagesAnneeAyantVote ?></td><td><?=$nbImagesAnneeAyantVoteMPM ?></td></tr>
</tbody>
</table>