{% extends "base.html" %} {% block title %}Execute Inspection{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
{# Sticky toolbar #}
{{ inspection.template.name }}
{{ inspection.facility.name }}{% if inspection.area %} · {{ inspection.area.name }}{% endif %}
{{ answered }}/{{ results|length }} answered
Flag Issue
{% if inspection.notes %}
Notes: {{ inspection.notes }}
{% endif %} {% set ns = namespace(current_cat='') %} {% for result in results %} {% set item = result.checklist_item %} {% if item.category != ns.current_cat %} {% set ns.current_cat = item.category %}
{{ item.category or 'General' }}
{% endif %} {% set is_answered = result.passed is not none or result.score is not none %}
{{ item.item_description }} {% if item.requires_photo %} Photo required {% endif %}
{{ item.scoring_type|replace('_',' ') }}
{# ── Pass/Fail ── #} {% if item.scoring_type == 'pass_fail' %}
{# ── Rating 5 ── #} {% elif item.scoring_type == 'rating_5' %}
{% for v in [1,2,3,4,5] %}
{% endfor %}
{# ── Rating 10 ── #} {% elif item.scoring_type == 'rating_10' %}
{% for v in range(1,11) %}
{% endfor %}
{% endif %}
{% if result.photo_path %}
Photo
{% endif %}
{% endfor %} {# Bottom submit bar #}
{% endblock %} {% block extra_js %} {% endblock %}