{% extends "master_noauth.html" %} {% block title %}Mirrors{% endblock %} {%block tag %}mirrors{% endblock %} {% block content %}
We have currently {{ mirrors | length }} active mirrors
Country | Site Name | Mirror Name | Categories | Bandwith | Internet2 | Comment |
---|---|---|---|---|---|---|
{{ mirror.country }} | {{ mirror.site.name }} | {{ mirror.name }} |
{% for cat in mirror.categories %}
{% if cat.urls %}
{{ cat.category.name }}
{% for url in cat.urls %}
{{ url.url.split('://')[0] }}
{% endfor %} {% endif %} {% endfor %} |
{{ mirror.bandwidth_int }} | {% if mirror.internet2 %}Yes{% else %}No{% endif %} | {% if mirror.comment %}{{ mirror.comment }}{% endif %} |
There are currently no active mirrors registered.
{% endif %} {% endblock %}