{% extends "layouts/app.html" %} {% block title %}{{ page_title }} - Facilities Management{% endblock %} {% block sidebar %} {% include 'components/sidebar.html' %} {% endblock %} {% block topbar %}

{{ page_title }}

{{ artefacts|length }} report{{ 's' if artefacts|length != 1 else '' }}

+ New Report
{% endblock %} {% block content %}
{% if artefact_type %}
All Draft In Review Final
{% endif %} {% if artefacts %}
{% for artefact in artefacts %}

{{ artefact.title }}

{{ artefact.status }}
Type: {% if artefact.artefact_type == 'engagement' %}Inspection Report {% elif artefact.artefact_type == 'incident' %}Incident Report {% elif artefact.artefact_type == 'investigation' %}Investigation {% elif artefact.artefact_type == 'assessment' %}Assessment {% else %}{{ artefact.artefact_type|title }}{% endif %}
Created: {{ artefact.created_at[:10] }}
Updated: {{ artefact.updated_at[:10] }}
{% if artefact.created_by %}
By: {{ artefact.created_by }}
{% endif %}
{% endfor %}
{% else %}

No {{ page_title }} Yet

Create your first report to get started

+ New Report
{% endif %}
{% endblock %}