{% extends "customer_main.html" %} {%load static%} {% block content %}

My Orders

{% for order in orders %} {% endfor %}
Order ID Product Cost Status Actions

{{order.order_id}}

{% for item in order.orderitem_set.all %}

{{item.item.title}}

{% endfor %}

${{order.get_cart_total}}

{{order.status}}

{% endblock %}