{% load timestamp_fmt %} {% block content %}
{% for inv in manifest.investigations %}

{{ inv.name }}

Manager: {{ manifest.manager }}
Owner: {{ inv.owner }} {% endfor %}
{{ manifest.timestamps.0 | as_date }}
ID: {{ manifest.id }}
{% for state in manifest.states %}
{% if state.status == "started" %}

{{ state.id }} {% endif %} {% if state.status == "checked" %}

{{ state.id }} {% endif %} {% if state.status == "changed" %}

{{ state.id }} {% endif %} {% if state.status == "expired" %}

{{ state.id }} {% endif %} {% if state.status == "errored" %}

{{ state.id }} {% endif %}
{% endfor %}
{% endblock %}