{% include 'header.html' %}
{% 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' %}