{% extends "../base.html" %} {% block title %}{{ _("Mirror %s") % mirror }}{% end block %} {% block content %}

{{ mirror }}

{% if mirror.owner %}

{{ _("by %s") % mirror.owner }}

{% end %}
{#
{% module Map() %}
#}
{% if mirror.asn %}
{{ _("Autonomous System") }}
{{ mirror.address.autonomous_system or "AS%s" % mirror.asn }}
{% end %}
{{ _("Country") }}
{{ mirror.country.name }}
    {% if mirror.state == "UP" %}
  • {{ _("The mirror is up") }}

    {{ _("Last updated %s") % locale.format_date(mirror.last_update) }}
  • {% elif mirror.state == "DOWN" %}
  • {{ _("The mirror is down") }}

    {{ _("Last updated %s") % locale.format_date(mirror.last_update) }}
  • {% elif mirror.state == "OUTOFSYNC" %}
  • {{ _("The mirror is out of sync") }}

    {{ _("Last updated %s") % locale.format_date(mirror.last_update) }}
  • {% end %}
{{ _("Browse Mirror") }}
{% end block %}