
- Display mirror domain instead of an arbitrary index (which could change) - Fix showing 404 page for non-existent mirror redirection links - Move default mirror definition into downloads.py for easy changing
18 lines
1.0 KiB
HTML
18 lines
1.0 KiB
HTML
{% extends "global/layout.html" %}
|
|
{% block title %}{{ _('Mirror selection') }}{% endblock %}
|
|
{% block content %}
|
|
<h1>{{ _('Mirror selection') }}</h1>
|
|
<h2>{{ _('File:') }} /{{ file }}</h2>
|
|
{% for protocol in mirrors -%}
|
|
<div class="protocol">
|
|
<h3>{{ protocol.name | upper }}</h3>
|
|
<ul>
|
|
<li><a href="{{ url_for('downloads_redirect', version=version, protocol=protocol.name, file=file) }}">{{ _('Any mirror') }}</a></li>
|
|
{% for domain, mirror in protocol.mirrors.items() -%}
|
|
<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', version=version, protocol=protocol.name, domain=domain, file=file) }}">[{{ _('Download') }}]</a> <a href="{{ url_for('downloads_redirect', version=version, protocol=protocol.name, domain=domain, file=file+'.sig') }}">[sig]</a></li>
|
|
{%- endfor %}
|
|
</ul>
|
|
</div>
|
|
{%- endfor %}
|
|
{% endblock %}
|