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

Inspection Templates

{% if current_user.role in ['admin', 'director'] %} Create Template {% endif %}
{% for template in templates %}
{{ template.name }} {% if template.active %} Active {% else %} Inactive {% endif %}

{{ template.description or 'No description' }}

{{ template.frequency|title }} {{ template.checklist_items.count() }} items
{% else %}
No templates created yet.
{% endfor %}
{% if current_user.role in ['admin', 'director'] %} {% endif %} {% endblock %} {% block extra_js %} {% if current_user.role in ['admin', 'director'] %} {% endif %} {% endblock %}