Subversion Repositories eFlore/Applications.del

Compare Revisions

Ignore whitespace Rev 2017 → Rev 2018

/trunk/widget/modules/stats/squelettes/listeMeilleursVoteurs.tpl.html
9,7 → 9,7
</thead>
<tbody>
<?php foreach($liste as $util): ?>
<tr><td><?= $util['courriel'] ?></td><td><?= $util['nombre'] ?></td></tr>
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeur anonyme" ?></td><td><?= intval($util['nombre']) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>
/trunk/widget/modules/stats/squelettes/listeMeilleursProposeurs.tpl.html
9,7 → 9,7
</thead>
<tbody>
<?php foreach($liste as $util): ?>
<tr><td><?= $util['utilisateur_courriel'] ?></td><td><?= $util['nb_prop'] ?></td></tr>
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeur anonyme" ?></td><td><?= intval($util['nb_prop']) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>
/trunk/widget/modules/stats/squelettes/listeProposeursReguliers.tpl.html
9,7 → 9,7
</thead>
<tbody>
<?php foreach($liste as $util): ?>
<tr><td><?= $util['utilisateur_courriel'] != '' ? $util['utilisateur_courriel'] : "contributeurs anonymes" ?></td><td><?= intval($util['moyenne']) ?></td></tr>
<tr><td><?= $util['intitule'] != '' ? $util['intitule'] : "contributeurs anonymes" ?></td><td><?= intval($util['moyenne']) ?></td></tr>
<?php endforeach; ?>
</tbody>
</table>
/trunk/widget/modules/stats/squelettes/listeMeilleursTagueurs.tpl.html
1,2 → 1,15
<h2>Pictoflora - Utilisateurs ayant ajouté le plus de mots clés</h2>
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
<h2>Pictoflora - les <?= count($liste) ?> utilisateurs ayant ajouté le plus de mots clés</h2>
<?=(isset($annee) ? "<h4>Pour l'année " . $annee . "</h4>" : "")?>
<table class="table table-hover">
<thead>
<tr>
<th>Contributeur</th>
<th>Nombre de mots-clés ajoutés</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>