{% extends 'base.html' %} {% load static %} {% block title %}- My Orders{% endblock title %} {% block on_page_css %} {% endblock on_page_css %} {% block content %}
Status: {{ order.get_status_display}}
{% for item in order.items.all %}Qty: {{ item.quantity }} - Price: {{ item.price }} - Product: {{ item.product }} - Category: {{ item.product.category }}
{% endfor %}