summaryrefslogtreecommitdiff
path: root/templates/toplist.html.ep
blob: 2784386803ee01ca3d311f0479e11740679845f6 (plain)
1
2
3
4
5
6
7
8
9
10
%= include 'topform';

<div class="toplist">
<table>
<tr><th>Meldung</th><th>Anteil</th><th>Anzahl</th></tr>
% for my $entry (@{ stash('toplist') // [] }) {
<tr><td><%= $entry->[0] %></td><td><%= $entry->[1] %></td><td><%= $entry->[2] %></td></tr>
% }
</table>
</div>