Rev 2017 |
Details |
Compare with Previous |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
2013 |
mathias |
1 |
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait au moins une proposition par mois, sur toute la période</h2>
|
|
|
2 |
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
|
2017 |
mathias |
3 |
<table class="table table-hover">
|
|
|
4 |
<thead>
|
|
|
5 |
<tr>
|
|
|
6 |
<th>Contributeur</th>
|
|
|
7 |
<th>Nombre moyen de propositions par mois</th>
|
|
|
8 |
</tr>
|
|
|
9 |
</thead>
|
|
|
10 |
<tbody>
|
|
|
11 |
<?php foreach($liste as $util): ?>
|
2018 |
mathias |
12 |
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeurs anonymes" ?></td><td><?= intval($util['moyenne']) ?></td></tr>
|
2017 |
mathias |
13 |
<?php endforeach; ?>
|
|
|
14 |
</tbody>
|
|
|
15 |
</table>
|