]> git.ipfire.org Git - ipfire.org.git/blame - www/templates/stasy-stats-geo.html
Add more information to the geo table.
[ipfire.org.git] / www / templates / stasy-stats-geo.html
CommitLineData
91a446f0
MT
1{% extends "stasy-base-2.html" %}
2
cfd1683f 3{% block title %}{{ _("Geo locations") }}{% end block %}
91a446f0
MT
4
5{% block content %}
6 <h3>{{ _("Language selection") }}</h3>
cfd1683f
MT
7 {% if lang == "de" %}
8 <p>
9 Dies gibt einen Überblick über die Häufigkeit der ausgewählten
10 Sprachen.
11 </p>
12 {% else %}
13 <p>
14 This will give a short overview about what languages are configured
15 on the IPFire webinterface.
16 </p>
17 {% end %}
6af40477 18 {{ modules.StasyTable(languages, sortby="percentage", locale=True) }}
91a446f0
MT
19
20
21 <h3>{{ _("Geo locations") }}</h3>
cfd1683f
MT
22 {% if lang == "de" %}
23 <p>
24 Dieses Diagramm zeigt in welchem Land IPFire am häufigsten
25 eingesetzt wird.
26 </p>
27 {% else %}
28 <p>
29 This chart shows us in which country IPFire is running.
30 </p>
31 {% end %}
638e9782 32 {{ modules.StasyGeoTable(geo_locations) }}
91a446f0 33{% end block %}