]> git.ipfire.org Git - ipfire.org.git/blob - templates/admin-downloads.html
Remove obsolete pakfire CGI scripts.
[ipfire.org.git] / templates / admin-downloads.html
1 {% extends "admin-downloads-base.html" %}
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>
24 {{ modules.StasyGeoTable(downloads_locations_today) }}
25 {{ modules.StasyGeoTable(downloads_locations_total) }}
26 </div>
27 {% end %}