{% extends "base.html" %} {% block title %}Orders - Pro Choice Admin{% endblock %} {% block content %}

📋 Order Management

{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %} {% if orders %}
{% for order in orders %} {% endfor %}
Order ID Customer Date Total Amount Status Actions
#{{ order.id }} {{ order.user.full_name }}
{{ order.user.email }}
{{ order.created_at.strftime('%Y-%m-%d %H:%M') }} ₦{{ "{:,.2f}".format(order.total_amount) }} {{ order.status }} View
{% else %}

No Orders Yet

Orders will appear here when customers complete their purchases

{% endif %} Back to Dashboard
{% endblock %}