Rev 2018 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait le plus de votes positifs</h2>
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
<table class="table table-hover">
<thead>
<tr>
<th>Contributeur</th>
<th>Nombre de propositions</th>
</tr>
</thead>
<tbody>
<?php foreach($liste as $util): ?>
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeur anonyme" ?></td><td><?= intval($util['nombre']) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>