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

Admin Dashboard

Add New Product
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %} {% for category, message in messages %}
{{ message }}
{% endfor %} {% endif %} {% endwith %}
{% if products %}
{% for product in products %}
{% if product.image_url %} product image {% else %} product image {% endif %} {% if product.badge %} {{ product.badge }} {% endif %}

{{ product.name }}

{{ product.description }}

₦{{ "{:,.2f}".format(product.price) }}
{{ product.quantity_available }} in stock
Edit
{% endfor %}
{% else %}

No Products Yet

Start building your inventory by adding your first product

Add Your First Product
{% endif %}
{% 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 Home
{% endblock %}