{% extends "base.html" %} {% load static %} {% block title %}Checkout · {{ SITE_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %} {% include "public/_breadcrumbs.html" with title="Checkout" %}

Shipping

{% if user.is_authenticated %}

Signed in as {{ user.email }}. Cards stay on Stripe; we never store card numbers. Edit profile

{% else %}

Have an account? Sign in to prefill shipping and save cards on Stripe. Or create one.

{% endif %}
{% csrf_token %}

Order

    {% for line in lines %}
  • {{ line.quantity }}× {{ line.product.name }}{% if line.color %} ({{ line.color.name }}){% endif %}${{ line.line_total }}
  • {% endfor %}
  • Total${{ total }}

Edit cart

{% endblock %} {% block extra_js %} {% endblock %}