{% include 'AdminTemplates/adminDash.html' %} {% load static %} {% block body %}
img
img
{% if all_order_cart %}
{% for cart_id in all_order_cart %} {% for i in sales_list %} {% if i.customer_id == cart_id|add:0 %} {% if i.status == 'Ordered' %} {% elif i.status == 'Out For Delivery' %} {% elif i.status == 'Pending' %} {% else %} {% endif %} {% endif %} {% endfor %} {% endfor %}
Ordered Date Customer Name Status Order Category Total Biller Quickview Action
{{ i.order_date }} {{ i.customer.first_name }} {{ i.customer.last_name }}{{ i.status }}{{ i.status }}{{ i.status }}{{ i.status }}{{ i.product_type}} {{ i.sub_total }} {{ i.biller }} img
{% else %} No Orders yet {% endif %}
{% endblock body %}