]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/admin-downloads.html
Bug 11338: modified sizes
[people/shoehn/ipfire.org.git] / templates / admin-downloads.html
CommitLineData
66862195 1{% extends "base.html" %}
60024cc8
MT
2
3{% block body %}
4 <div id="post">
5 <h3>{{ _("Download statistics") }}</h3>
6
7 <h4>{{ _("Download counters") }}</h4>
8 <table>
9 <tr>
10 <td>{{ _("Today") }}</td>
11 <td>{{ downloads_today }}</td>
12 </tr>
13 <tr>
14 <td>{{ _("Yesterday") }}</td>
15 <td>{{ downloads_yesterday }}</td>
16 </tr>
17 <tr>
18 <td>{{ _("Total") }}</td>
19 <td>{{ downloads_total }}</td>
20 </tr>
21 </table>
22
23 <h4>{{ _("Downloads by country") }}</h4>
66862195
MT
24 {% module FireinfoGeoTable(downloads_locations_today) %}
25 {% module FireinfoGeoTable(downloads_locations_total) %}
60024cc8
MT
26 </div>
27{% end %}