{% extends "base.html" %} {% block title %}Dashboard - Inspection Reporting Tool{% endblock %} {% block content %}

Dashboard

Welcome back, {{ current_user.full_name }}!

Total Inspections

{{ total_inspections }}

Completed

{{ completed_inspections }}

In Progress

{{ in_progress_inspections }}

Recent Inspections

New Inspection
{% if recent_inspections %}
{% for inspection in recent_inspections %} {% endfor %}
ID Location Status Created Actions
INS-{{ inspection.id }} {{ inspection.location }} {{ inspection.status }} {{ inspection.created_at.strftime('%Y-%m-%d') }} View Edit
{% else %}

No inspections found

{% endif %}
{% endblock %}