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