{% extends "main.html" %} {% block head %} {{ super() }} {% endblock %} {% block title %} IP-ASN History {% endblock %} {% block scripts %} {{ super() }} {% endblock %} {% block content %}

IP-ASN History

{% if ipasn_details %} {% for entry in ipasn_details %} {% endfor %}
First Seen Last Seen ASN ASN Description Prefix
{{ entry['first_seen'] }} {{ entry['last_seen'] }} {{ entry['asn'] }} {% for asn_description in entry['asn_descriptions'] %} {{ asn_description }}
{% endfor %}
{{ entry['prefix'] }}
{% endif %} {% endblock %}