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

{{ mirror }}

{% if mirror.owner %}

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

{% end %}
{% if mirror.latitude and mirror.longitude %}
{% module Map(mirror.latitude, mirror.longitude) %}
{% end %}
{% if mirror.asn %}
{{ _("Autonomous System") }}
{{ 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 %}