{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
{{ current_user.role|title }}
Active Facilities
Templates
Users
| Date | Facility | Area | Inspector | Score | Status |
|---|---|---|---|---|---|
| {{ inspection.inspection_date.strftime('%Y-%m-%d %H:%M') }} | {{ inspection.facility.name }} | {{ inspection.area.name if inspection.area else 'N/A' }} | {{ inspection.inspector.username }} | {% if inspection.overall_score %} {{ inspection.overall_score }}% {% else %} -- {% endif %} | {{ inspection.status|title }} |