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

Inspection Templates

{% if current_user.role in ['admin', 'supervisor'] %} Create Template {% endif %}
{% for template in templates %}
{{ template.name }}

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

{{ template.frequency|title }} {{ template.checklist_items.count() }} items
{% else %}
No templates created yet.
{% endfor %}
{% endblock %}