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

Active Orders

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

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

{% endif %}
{% endblock content %}