{% extends 'admin_pages/base_admin.html' %} {% block title %}Orders | Admin Panel{% endblock %} {% block content %}
| # | Placed At | Order By | Order To | Due Date | Status | Total Amount | Returns | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ order.id }} | {{ order.placed_at|date:"Y-m-d" }} | {{ order.order_by }} | {{ order.order_to }} | {{ order.due_date|date:"Y-m-d" }} | {% if order.order_status == 'P' %} Pending {% else %} Completed {% endif %} | {{ order.total_amount|floatformat:2 }} {{ order.currency }} | {% if order.has_supplier_returns %} {% if order.is_fully_returned %} Returned {% else %} Partial Returned {% endif %} {% endif %} |
|
| No orders found. | ||||||||