]> git.ipfire.org Git - people/shoehn/ipfire.org.git/blame - templates/admin-downloads.html
Rewrite geo load balancing.
[people/shoehn/ipfire.org.git] / templates / admin-downloads.html
CommitLineData
60024cc8
MT
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>
6b6308b0
MT
24 {% module StasyGeoTable(downloads_locations_today) %}
25 {% module StasyGeoTable(downloads_locations_total) %}
60024cc8
MT
26 </div>
27{% end %}