{% extends 'core/base.html' %} {% block title %}Cart{% endblock title %} {% block content %}

Cart

{% if cart %}
{% for item in cart %} {% endfor %}
Product Quantity Price
{{item.product.title}}
{{item.product.title}} ${{item.quantity}} - + ${{ item.total_price }} Remove
Total Cost {{ cart|length }} ${{cart.get_total_cost}}

Contact Information

{% csrf_token %} {% if form.non_field_errors %}
{{form.non_field_errors}}
{% endif %} {% if form.errors %}
{% endif %}

Payment Information

{% comment %} A stripe Element will be inserted here {% endcomment %}
{% if messages %} {% for message in messages %}
{{message}}
{% endfor %} {% endif %}
{% else %}

You don't have any products in your cart.

{% endif %} {% endblock content %} {% block scripts %} {% endblock scripts %}