2012-12-05 01:21:34 +00:00
|
|
|
{% extends "global/layout.html" %}
|
2013-01-18 04:36:24 +00:00
|
|
|
{% block title %}{{ _('Mirror selection') }}{% endblock %}
|
2012-12-05 01:21:34 +00:00
|
|
|
{% block content %}
|
2013-01-18 04:36:24 +00:00
|
|
|
<h1>{{ _('Mirror selection') }}</h1>
|
|
|
|
<h2>{{ _('File:') }} /{{ file }}</h2>
|
2015-06-24 12:19:51 +00:00
|
|
|
{% for net in mirrors -%}
|
|
|
|
<div class="net">
|
|
|
|
<h3>{{ net.name | upper }}</h3>
|
2012-12-05 01:21:34 +00:00
|
|
|
<ul>
|
2015-06-24 12:19:51 +00:00
|
|
|
<li><a href="{{ url_for('downloads_redirect', version=version, net=net.key, file=file) }}">{{ _('Any mirror') }}</a></li>
|
|
|
|
{% for protocol in net.protocols -%}
|
|
|
|
<li><a href="{{ url_for('downloads_redirect', version=version, net=net.key, protocol=protocol.key, file=file) }}">{{ protocol.key | upper }}</a>
|
|
|
|
<ul>
|
|
|
|
{% for domain, mirror in protocol.domains.items() -%}
|
|
|
|
<li>{% if mirror.country %}<img src="{{ url_for('static', filename='images/flags/'+mirror.country+'.png') }}" /> {% endif %}{% if mirror.org_url %}<a href="{{ mirror.org_url }}">{% endif %}{{ mirror.org }}{% if mirror.org_url %}</a>{% endif %} <a href="{{ url_for('downloads_redirect', version=version, net=net.key, protocol=protocol.key, domain=domain, file=file) }}">[{{ _('Download') }}]</a> <a href="{{ url_for('downloads_redirect', version=version, net=net.key, protocol=protocol.key, domain=domain, file=file+'.sig') }}">[sig]</a></li>
|
|
|
|
{%- endfor %}
|
|
|
|
</ul></li>
|
2012-12-05 01:21:34 +00:00
|
|
|
{%- endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
{%- endfor %}
|
|
|
|
{% endblock %}
|