{% extends "base.html" %} {% block title %}{{ _("Location of %s") % address }}{% end block %} {% block main %} {% if is_blacklisted %}
{{ _("This IP address is blacklisted!") }}

{{ _("Access to some resources on this website might be limited because this IP address is a known abuser.") }}

{{ _("See Full Blacklist Status") }}
{% end %}
{% if peer and peer.latitude and peer.longitude %}
{% module Map(peer.latitude, peer.longitude) %}
{% end %}
{{ _("Country") }}
{% if peer %} {% if peer.country_name %} {{ peer.country_name }} ({{ peer.country }}) {% else %} {{ peer.country_name }} {% end %} {% else %} {{ _("Unkown") }} {% end %}
{% if peer and peer.asn %}
{{ _("Autonomous System") }}
{{ peer.asn }}
{% end %}
{{ _("Blacklist Status") }}
{% end block %}