{% extends "main/layout2.html" %} {% block content %}

Completed Orders

{% if cart_items %}
{% for cart in cart_items %} {% endfor %}
Order No. User User Email Name Description Specification Price Total Pieces Status Delivery Date
{{ cart.id }} {{ cart.user.username }} {{ cart.user.email}} {{ cart.item.title }} {{ cart.item.labels }} {{ cart.item.description }} {{ cart.item.instructions }} {{ cart.item.price }} {{ cart.item.pieces }} pieces {{ cart.status }} {{ cart.delivery_date }}
{% else %}

Sorry, you have not ordered any item yet!!!

{% endif %}
{% endblock content %}