]> git.ipfire.org Git - ipfire.org.git/blame - src/templates/fireinfo/modules/table-geo.html
Introduce autotools
[ipfire.org.git] / src / templates / fireinfo / modules / table-geo.html
CommitLineData
66862195
MT
1<dl class="dl-horizontal">
2 {% for country in countries %}
3 <dt>
4 {{ country.name }}
5 {% if country.code and not country.code in ("A1", "A2") %}
6 <img src="{{ static_url("images/flags/%s.png" % country.code.lower()) }}" />
7 {% end %}
8 </dt>
9 <dd>
10 {% module ProgressBar(country.value) %}
11 </dd>
12 {% end %}
13</dl>
14
15{% if other_countries %}
16 {{ _("IPFire is also running in %s.") % locale.list(other_countries) }}
17{% end %}