Line 1... |
Line 1... |
1 |
<h2>Identiplante - Observations</h2>
|
1 |
<h2>Identiplante - Observations</h2>
|
2 |
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
|
- |
|
3 |
<ul>
|
- |
|
4 |
<li>Nombre moyen d'observations non identifiées soumises chaque mois : <strong><?=$moyenneObsSansNomParMois ?></strong></li>
|
- |
|
5 |
<li>Nombre moyen d'observations identifiées chaque mois : <strong><?=$moyenneObsIdentifieesParMois ?></strong></li>
|
- |
|
6 |
<li>Pourcentage des observations identifiees et validées à la fin de l'annee : <strong><?=number_format($pourcentageObsIdentifieesEnFinDAnnee, 0, ',', ' ') ?> %</strong></li>
|
- |
|
7 |
<li>Pourcentage des observations ayant atteint un consensus à la fin de l'annee : <strong><?=number_format($pourcentageObsIdentifieesEnFinDAnneePlusPlus, 0, ',', ' ') ?> %</strong></li>
|
- |
|
8 |
<li>Nombre moyen d'actions (commentaires et votes) par jour : <strong><?=$moyenneActionsParJour ?></strong></li>
|
- |
|
9 |
<li>Nombre de personnes envoyant au moins une proposition par mois : <strong><?=$personnesEnvoyantUnePropositionParMois ?></strong></li>
|
- |
|
10 |
</ul>
|
- |
|
11 |
|
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 d'observations au total</td><td><?=$nbObsTotal ?></td><td><?=$nbObsTotalMPM ?></td></tr>
|
- |
|
13 |
<tr><td>Nombre d'obs sans identification (ou tag ou certitude)</td><td><?=$nbObsSansIdentOuTC ?></td><td><?=$nbObsSansIdentOuTCMPM ?></td></tr>
|
- |
|
14 |
<tr><td>Nombre d'obs sans identification</td><td><?=$nbObsSansIdent ?></td><td><?=$nbObsSansIdentMPM ?></td></tr>
|
- |
|
15 |
<tr><td>Nombre d'obs avec tag à déterminer ou certitude incertaine</td><td><?=$nbObsTC ?></td><td><?=$nbObsTCMPM ?></td></tr>
|
- |
|
16 |
<tr><td>Nombre d'obs avec tag à déterminer ou certitude incertaine et retenue</td><td><?=$nbObsTCRetenue ?></td><td><?=$nbObsTCRetenueMPM ?></td></tr>
|
- |
|
17 |
<tr><td>Nombre d'obs avec tag à déterminer ou certitude incertaine et avec consensus</td><td><?=$nbObsTCConsensus ?></td><td><?=$nbObsTCConsensusMPM ?></td></tr>
|
- |
|
18 |
<tr><td>Nombre d'obs avec tag à déterminer ou certitude incertaine et avec consensus mais non validées</td><td><?=$nbObsTCConsensusNonValide ?></td><td><?=$nbObsTCConsensusNonValideMPM ?></td></tr>
|
- |
|
19 |
</tbody>
|
- |
|
20 |
</table>
|
- |
|
21 |
|
12 |
|
22 |
|