{% extends 'store/index.html' %} {% load static %} {% block content %}
{% csrf_token %}

Shipping Information:




← Back to Cart

Order Summary


{% for item in items %}

{{item.product.name}}

${{item.product.price|floatformat:2}}

x{{item.quantity}}

{% endfor %}
Items: {{order.get_cart_items}}
Total: ${{order.get_cart_total|floatformat:2}}
{% endblock content %}