{% extends "admin/base.html" %} {% block title %}Admin Dashboard{% endblock %} {% block content %}

Admin Dashboard

Overview of system statistics and recent activity

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %} {% endfor %} {% endif %} {% endwith %}
Total Users

{{ total_users }}

{{ active_users }} active
Total Quotations

{{ total_quotations }}

All time
Active Regions

{{ active_regions }}

Active regions
Recent Quotes

{{ recent_quotations|length }}

Last 5 quotes
Recent Activity
{% if recent_quotations %}
{% for quotation in recent_quotations %} {% endfor %}
User Project Amount Date Status
{{ quotation.user.username }}
{{ quotation.user.email }}
{{ quotation.project_name }} ${{ "%.2f"|format(quotation.total_cost) }} {{ quotation.created_at.strftime('%Y-%m-%d %H:%M') }} Completed
{% else %}

No recent quotations found.

{% endif %}
{% endblock %}