{% extends 'myAppForm/base.html' %} {% block title%} Payment {% endblock title %} {% load static %} {% block body %}

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 body %}