{% extends "layout.html" %} {% block content %}

Sites

{% for site in sites%} {% for interface in site.interfaces %}

{{site.hostname}} --> {{interface.name}}
Hosts number: {{ interface.hosts |list|count}}

{% for host in interface.hosts%} {% endfor %}
IP Hostname MAC Ports Open
{{ host.ip }} {{ host.name_ptr}} {{ host.mac }} {{ host.ports| replace("[", "") |replace("]", "") }}
{% endfor %} {% endfor %}
{% endblock %}