{% extends 'base.html' %} {% load static %} {% block content %}

Billing Information

{% csrf_token %}

Order Summary

{% for item in cart_items %} {% endfor %}
Product Qty Subtotal
{{ item.product.product_name }} {{ item.quantity }} ${{ item.sub_total }}
Total: ${{ total }}
{% endblock %}