{% extends "shop/base.html" %} {% load static %} {% block title %}Pay your order{% endblock %} {% block content %}

Order summary

{% for item in order.items.all %} {% endfor %}
Image Product Price Quantity Total
{{ item.product.name }} ${{ item.price }} {{ item.quantity }} ${{ item.get_cost }}
Total ${{ order.get_total_cost }}
{% csrf_token %}
{% endblock %}