{% extends "common/base.html" %} {% load i18n static crispy_forms_tags purchase django_htmx %} {% block extrahead %} {% endblock %} {% block content %} {% if basket %}

{{ basket }} {{ basket.price|currency }}

{{ basket.created_at }}

{% if not basket.payment_method %} {% endif %} {% else %}

{% translate "New basket" %} {{ basket.price|currency }}

{% endif %} {% crispy form %}
{% for item in basket.items.all %} {% if item.product.unit_price_cents == 0 %} {% endif %} {% endfor %}
{% if basket %} {% translate "New basket" %} {% endif %}
{% endblock %} {% block extrascript %} {% django_htmx_script %} {% endblock %}