Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 2170 → Rev 2171

/branches/v1.11-magnesium/widget/modules/stats/squelettes/listeProposeursReguliers.tpl.html
New file
0,0 → 1,15
<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>