{% extends 'food/main.html' %} {% load static %} {% block cart %}
← Back

Items: {{order.get_cart_items}}
Total:₹{{order.get_cart_total|floatformat:2}}
{% csrf_token %} {{form}}

Item
Price
Quantity
Total
{% for item in items %}

{{item.product.name}}

₹{{item.product.price|floatformat:2}}

{{item.quantity}}

₹{{item.get_total|floatformat:2}}

Delete
{% endfor %}
{% endblock %}