]> git.ipfire.org Git - ipfire.org.git/blob - www/templates/modules/mirrors-table.html
f39b074b54f84dd4da4b1097866a6ea854642620
[ipfire.org.git] / www / templates / modules / mirrors-table.html
1 <table class="mirrors">
2 {% for mirror in mirrors %}
3 <tr>
4 <td class="hostname {{ mirror.state.lower() }}">
5 <a href="/mirror/{{ mirror.id }}">{{ mirror.hostname }}</a>
6 </td>
7 <td>
8 <img src="{{ static_url("images/flags/%s.png" % mirror.country_code) }}" alt="{{ mirror.country_code }}" />
9 {{ mirror.location_str }}
10 </td>
11 </tr>
12 {% end %}
13 </table>
14 <br class="clear" />
15