Rev 2017 | Blame | Compare with Previous | Last modification | View Log | RSS feed
<h2>Identiplante - les <?= count($liste) ?> utilisateurs ayant fait le plus de propositions votées positivement</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['nb_prop']) ?></td></tr><?php endforeach; ?></tbody></table>