{% extends "base.html" %} {% block title %}Inspections{% endblock %} {% block content %}

Inspections

Start Inspection
{# Filters #}
Clear
{% if inspections.items %}
{% for ins in inspections.items %} {% endfor %}
DateFacilityArea TemplateInspectorScore Status
{{ ins.inspection_date.strftime('%Y-%m-%d %H:%M') }} {{ ins.facility.name }} {% if ins.area %}{{ ins.area.name }}{% else %}{% endif %} {{ ins.template.name }} {{ ins.inspector.username }} {% if ins.overall_score %} {{ ins.overall_score }}% {% else %}{% endif %} {{ ins.status|replace('_',' ')|title }} {% if ins.status == 'in_progress' or ins.status == 'flagged' %} Continue {% else %} View {% endif %}
{# Pagination #} {% if inspections.pages > 1 %}
{% endif %} {% else %}
No inspections found.
{% endif %}
{% endblock %}