{% extends 'myAppForm/base.html' %} {% load static %} {% block title%} Cart {% endblock title %} {% block body %}
← 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 body %}