{% extends "layout.html" %} {% block title %} Cart {% endblock %} {% block main %} {% with messages = get_flashed_messages() %} {% if messages %} {% for msg in messages %} {% endfor %} {% endif %} {% endwith %} {% if cart_items|length != 0 %}
My Cart.
{% for cart_item in cart_items %} {% endfor %}
Product Name Price (in ₹) Contact Number Delivery Delete
{{ cart_item.name }} ₹ {{ cart_item.price }} {{ cart_item.phone }} {{ cart_item.delivery }}
{% else %}
Your cart is empty
{% endif %} {% endblock %}