summaryrefslogtreecommitdiff
path: root/templates/toplist.html.ep
blob: daead423b8cc660849ffea8c9746494e514a4573 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%= include 'topform';

<div class="toplist">
<table>
<tr><th>Meldung</th><th>Anteil</th><th>Anzahl</th></tr>
% my $max = stash('toplist')->[0][2];
% for my $entry (@{ stash('toplist') // [] }) {
% my ($desc, $percent, $raw) = @{$entry};
<tr>
<td style="position: relative;"><div style="z-index: -1; position: absolute; width:<%= int($raw * 100 / $max) %>%; background-color: #e2e2e2;">&nbsp;</div><%= $desc %></td>
<td><%= $percent %></td>
<td><%= $raw %></td></tr>
% }
</table>
</div>