]> git.ipfire.org Git - ipfire.org.git/blame - templates/stasy-stats-geo.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / stasy-stats-geo.html
CommitLineData
60024cc8 1{% extends "stasy-base-1.html" %}
91a446f0 2
cfd1683f 3{% block title %}{{ _("Geo locations") }}{% end block %}
91a446f0 4
60024cc8
MT
5{% block body %}
6 <div class="page-header">
7 <h1>{{ _("Geo locations") }}</h1>
8 </div>
91a446f0 9
60024cc8
MT
10 <div class="row">
11 <div class="span12">
12 {% if lang == "de" %}
13 <p>
14 Dieses Diagramm zeigt in welchem Land IPFire am häufigsten
15 eingesetzt wird.
16 </p>
17 {% else %}
18 <p>
19 This chart shows us in which country IPFire is running.
20 </p>
21 {% end %}
22 {{ modules.StasyGeoTable(geo_locations) }}
23 </div>
24 </div>
91a446f0 25
60024cc8
MT
26 <div class="row">
27 <div class="span12">
28 <h2>{{ _("Language selection") }}</h2>
29 {% if lang == "de" %}
30 <p>
31 Dies gibt einen Überblick über die Häufigkeit der ausgewählten
32 Sprachen.
33 </p>
34 {% else %}
35 <p>
36 This will give a short overview about what languages are configured
37 on the IPFire webinterface.
38 </p>
39 {% end %}
40 {{ modules.StasyTable(languages, sortby="percentage", locale=True) }}
41 </div>
42 </div>
91a446f0 43{% end block %}