]> git.ipfire.org Git - ipfire.org.git/blob - templates/modules/stasy-table-geo.html
Move everything to the root of the repository.
[ipfire.org.git] / templates / modules / stasy-table-geo.html
1 <table class="table table-fireinfo">
2 {% for country in countries %}
3 <tr>
4 <td class="key">
5 <img src="{{ static_url("images/flags/%s.png" % country.code) }}" />
6 {{ country.name }}
7 </td>
8 <td class="bar">
9 <div class="progress">
10 <div class="bar" style="{{ "width: %.2f%%" % country.value }}"></div>
11 </div>
12 </td>
13 <td class="val">{{ "%.2f" % country.value }}%</td>
14 </tr>
15 {% end %}
16 </table>