Rev 2017 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait au moins une proposition par mois, sur toute la période</h2>
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
<table class="table table-hover">
<thead>
<tr>
<th>Contributeur</th>
<th>Nombre moyen de propositions par mois</th>
</tr>
</thead>
<tbody>
<?php foreach($liste as $util): ?>
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeurs anonymes" ?></td><td><?= intval($util['moyenne']) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>