{% extends "base.html" %} {% load django_bootstrap5 static %} {% block content %}

Management Dashboard

{% if pending_offer_count and pending_offer_count > 0 %}
{{ pending_offer_count }} pending offer request{{ pending_offer_count|pluralize }} need review.
Go to Offers
{% endif %} {% if accepted_offer_count or declined_offer_count %}
{{ accepted_offer_count }} offer{{ accepted_offer_count|pluralize }} accepted
{{ declined_offer_count }} offer{{ declined_offer_count|pluralize }} declined
Updated in real time on dashboard load.
{% endif %}
Order Management

Manage customer orders here. View, process, and track orders.

Orders tab content will be populated with order data and management tools.
Transaction History

View and manage all transactions including payments, refunds, and transfers.

Transactions tab content will be populated with transaction logs and analytics.
Wallet Management

Manage wallet balances, top-ups, and withdrawals.

Wallet tab content will be populated with balance information and wallet operations.
Support Tickets

Handle customer support tickets and inquiries.

Tickets tab content will be populated with support ticket management interface.
Offer Requests

Review customer offers and update their status.

{% if offers %}
{% for offer in offers %} {% endfor %}
# Customer Product Offer Status Submitted Action
{{ offer.id }} {{ offer.user.username }} {{ offer.product.name }} {{ offer.offered_price|floatformat:2 }} {{ offer.status }} {{ offer.created_at|date:'d M Y H:i' }} Review
{% else %}
No offer requests have been submitted yet.
{% endif %}
{% endblock %}