{% include 'header.html' %} {% if items[0].report_id is defined and active == 'Hosts' %}

{{ items[0].host }}

Updated: {{ items[0].date }}

{% endif %}
{% for item in items %}
{% if active == 'Hosts' %} {{ item.name }} {% else %} {{ item.name }} {{ item.host }} {% endif %} {% if item.last_updated is defined %} {{ item.last_updated }} {% elif item.date is defined %} {{ item.date }} {% endif %}
{% endfor %}
{% include 'footer.html' %}