{% extends "base.html" %} {% block title %}Arch Linux - {{ mirror.name }} - Mirror Details{% endblock %} {% block content %}

Mirror Details: {{ mirror.name }}

{% with mirror.downstream as ds_mirrors %} {% endwith %} {% with mirror.urls.all as urls %} {% endwith %}
Name: {{ mirror.name }}
Tier: {{ mirror.get_tier_display }}
Upstream: {% if mirror.upstream %} {{ mirror.upstream.name }} {% else %}None{% endif %}
Downstream:{% if ds_mirrors %} {% for ds in ds_mirrors %} {{ ds.name }}
{% endfor %} {% else %}None{% endif %}
Country: {{ mirror.country }}
Has ISOs: {{ mirror.isos|yesno }}
Protocols: {{ mirror.supported_protocols }}
Mirror URLs:{% if urls %} {% for u in urls %} {{ u.url }}
{% endfor %} {% else %}None{% endif %}
{% endblock %}