{% extends "base-1.html" %} {% block title %}{{ _("Mirror %s") % item.hostname }}{% end block %} {% block body %}
{% if item.owner %}
{{ _("Owner") }}
{{ item.owner }}
{% end %} {% if item.location_str %}
{{ _("Location") }}
{{ item.location_str }}
{% elif item.location %}
{% if item.country_name %}
{{ _("Country") }}
{{ item.country_name }}
{% end %} {% if item.location.city %}
{{ _("City") }}
{{ item.location.city }}
{% end %} {% end %} {% if item.prefer_for_countries %}
{{ _("Preferred for") }}
{{ locale.list(item.prefer_for_countries_names) }}
{% end %} {% if client_distance %}
{{ _("Estimated distance to you") }}
{{ "%.0fkm" % client_distance }}
{% end %}
{% if item.asn %}
{{ _("Autonomous System") }}
{{ item.asn }}
{% end %}
{{ _("IP Addresses") }}
{% for addr in item.addresses6 + item.addresses4 %} {{ addr }}
{% end %}
{% if item.enabled %}
{{ _("Last updated") }}
{{ locale.format_date(item.last_update, relative=True) }}
{% end %}

{{ _("Go to mirror") }}

{% if item.location %} {% module Map(item.latitude, item.longitude) %}

{{ _("The location of the mirror server is estimated by the IP address.") }}

{% else %}

{{ _("The location of this mirror server could not be estimated.") }}

{% end %}
{% end block %}