{% extends "base.html" %} {% block title %}Dashboard - Form Relay{% endblock %} {% block content %}

Dashboard

Platform Overview
{{ platform_stats.total_users }}
Total Users
{{ platform_stats.total_sites }}
Total Forms
{{ platform_stats.total_submissions_today }}
Today
{{ platform_stats.total_submissions_week }}
This Week
{{ platform_stats.total_submissions_month }}
This Month
{% if submissions %}
{% for sub in submissions %} {% endfor %}
Date Site Name Phone Email Equipment
{{ sub.submitted_at[:16] }} {{ sub.site_name }} {{ sub.customer_name or '-' }} {{ sub.customer_phone or '-' }} {{ sub.customer_email or '-' }} {{ sub.customer_equipment or '-' }}
{% else %}

No submissions yet

{% endif %}
{% endblock %}