{% extends "base.html" %} {% load static from staticfiles %} {% load mirror_status %} {% load flags %} {% block title %}Arch Linux - {{ url.url }} - URL Details{% endblock %} {% block head %}{% endblock %} {% block content %}

URL Details: {{ url.url }}

{% if user.is_authenticated %} {% endif %}
URL: {% if url.protocol.is_download %}{{ url.url }}{% else %}{{ url.url }}{% endif %}
Mirror: {{ url.mirror.name }}
Protocol: {{ url.protocol }}
Country: {% country_flag url.country %}{{ url.country.name }}
IPv4: {{ url.has_ipv4|yesno|capfirst }}
IPv6: {{ url.has_ipv6|yesno|capfirst }}
Active: {{ url.active|yesno|capfirst }}
Created: {{ url.created }}
First Check: {{ url.logs.earliest.check_time }}
Last Check: {{ url.logs.latest.check_time }}

Check Logs

{% include "mirrors/url_details_logs.html" %}
{% endblock %} {% block script_block %} {% load cdn %}{% jquery %}{% jquery_tablesorter %} {% endblock %}