{% extends "master.html" %} {% block title %}Mirrors{% endblock %} {%block tag %}mirrors{% endblock %} {% block content %}

Public active mirrors


{% if mirrors %}

We have currently {{ mirrors | length }} active mirror(s)

{% for title in ['Country', 'Site Name', 'Mirror Name', 'Categories', 'Bandwidth', 'Internet2', 'Comment'] %} {% endfor %} {% for mirror in mirrors %} {% endfor %}
{{ title|safe }}
{{ mirror.country }} {{ mirror.site.name }} {{ mirror.name }} {% for cat in mirror.categories %} {% if cat.urls %} {% if not loop.first %} {{ ', '|safe }} {% endif %} {{ cat.category.name }}: {% for url in cat.urls %} {% if not loop.first %} {{ ' | '|safe }} {% endif %} {{ url.url.split('://')[0] }} {% endfor %}
{% endif %} {% endfor %}
{{ mirror.bandwidth_int }} {% if mirror.internet2 %} Yes {% else %} No {% endif %} {% if mirror.comment %} {{ mirror.comment }} {% endif %}
{% else %}

There are currently no active mirrors registered.

{% endif %} {% endblock %}