2012-12-05 01:21:34 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2013-01-18 03:42:02 +00:00
|
|
|
{% block title %}{% trans %}Mirror selection{% endtrans %}{% endblock %}
|
2012-12-05 01:21:34 +00:00
|
|
|
{% block content %}
|
2013-01-18 03:42:02 +00:00
|
|
|
<h1>{% trans %}Mirror selection{% endtrans %}</h1>
|
|
|
|
<h2>{% trans %}File:{% endtrans %} /{{ file }}</h2>
|
2012-12-05 01:21:34 +00:00
|
|
|
{% for protocol in mirrors -%}
|
|
|
|
<div class="protocol">
|
|
|
|
<h3>{{ protocol.name | upper }}</h3>
|
|
|
|
<ul>
|
2013-01-18 03:42:02 +00:00
|
|
|
<li><a href="{{ url_for('downloads_redirect', protocol=protocol.name, file=file) }}">{% trans %}Any mirror{% endtrans %}</a></li>
|
2012-12-05 01:21:34 +00:00
|
|
|
{% for mirror in protocol.mirrors -%}
|
2013-01-18 03:42:02 +00:00
|
|
|
<li><img src="{{ url_for('static', filename='images/flags/'+mirror.country+'.png') }}" /> {% if mirror.org_url %}<a href="{{ mirror.org_url }}">{% endif %}{{ mirror.org }}{% if mirror.org_url %}</a>{% endif %} <a href="{{ url_for('downloads_redirect', protocol=protocol.name, file=file, mirror=loop.index-1) }}">[{% trans %}Download{% endtrans %}]</a></li>
|
2012-12-05 01:21:34 +00:00
|
|
|
{%- endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|
|
|
|
{% endblock %}
|