{% extends 'ecom/admin_base.html' %} {% load static %} {% block content %}
{%include 'ecom/admin_dashboard_cards.html'%}






Recent Booking
{% for product,customer,order in data %} {% for c in customer %} {% endfor %} {% for p in product %} {% if order.status == 'Pending'%} {% elif order.status == 'Delivered' %} {% elif order.status == 'Out for Delivery' %} {%else%} {%endif%} {% endfor %} {% endfor %}
Customer Contact Shipment Address Product Image Status
{{c.get_name}} {{c.mobile}} {{order.address}} {{p.name}} Profile Pic {{order.status}} {{order.status}} {{order.status}} {{order.status}}
{% endblock content %}