{% extends 'base.html' %} {% load static %} {% block title %}Admin Portal — PickkerMarket{% endblock %} {% block content %}
{{ product_count }}
Total products
{{ trending_count }}
Trending on homepage
{{ pending_payment_count }}
Awaiting payment approval
{% for product in products %} {% empty %} {% endfor %}
Name Category Farm Price Market Price Stock Trending Edit
{{ product.name }} {{ product.category }} TSh {{ product.farm_price|floatformat:0 }}/{{ product.unit }} TSh {{ product.market_price|floatformat:0 }}/{{ product.unit }} {{ product.stock_qty }} {% if product.is_trending %}Yes ({{ product.trend_direction }} {{ product.trend_change_pct }}%){% else %}—{% endif %} Edit
No products yet — add your first one above.
Orders

All orders

{% for order in orders %} {% empty %} {% endfor %}
Order Customer Picker Delivery Distance / Route Total Status Actions
#{{ order.id }} {{ order.customer_name }} {{ order.picker_name }} {{ order.delivery_date }}
{{ order.delivery_time_slot }}
{{ order.distance_km }} km {% if order.eta_traffic_min %}
~{{ order.eta_traffic_min }} min (traffic est.){% endif %} {% if order.route_surface_label %}
{{ order.route_surface_label }}{% endif %}
TSh {{ order.total_amount|floatformat:0 }} {{ order.status|title }} {% if order.status == 'pending_payment' %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
No orders yet.
{% endblock %}