{% extends 'store/index.html' %} {% load static %} {% block content %}
← Continue Shopping

Items: {{order.get_cart_items}}
Total: ${{order.get_cart_total|floatformat:2}}
Checkout

Item
Price
Quantity
Total
{% for item in items %}

{{item.product.name}}

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

{{item.quantity}}

${{item.get_total|floatformat:2}}

{% endfor %}
{% endblock content %}