{% 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 address.country_code %}
{{ _("Country") }}
{{ format_country_name(address.country_code) }}
{% end %} {% if address.asn %}
{{ _("Autonomous System") }}
{{ format_asn(address.asn) }}
{% end %}
{{ _("Blacklist Status") }}
{% end block %}