{%extends 'base.html' %} {% block title %} Order Summary {% endblock %} {% block content %} Order Summary

Order Summary

{% for item in items %} {% endfor %}
Item Price
{{ item["description"] }} £{{ item["price"] }}
Total: £{{ total_price }}

Delivery Address

{{ address }}

{% endblock %}