{% load static %} {% static "images" as baseUrl %} {% include 'com.html' %} {% include 'navbar_vendor.html' %}

ALL ORDER REQUESTS FROM CUSTOMERS

{% for order in orders %} {% for shops in shop %} {% if shops.pk == order.menu.item_shop.pk %}
CUST : {{order.customer.username}}
ITEM : {{order.menu.item_name}}
QTY : {{order.order_quantity}}
PRICE : {{order.order_price}}
{%csrf_token%}
{% endif %} {% endfor %} {% endfor %}