{% extends "shopit/base.html" %} {% load i18n sekizai_tags shopit_tags %} {% block page_title %}{% trans "Checkout" %}{% endblock %} {% block content %}
{% csrf_token %}
{% if customer.is_registered %}{% trans "Customer" %}{% else %}{% trans "Guest" %}{% endif %} {{ customer_form.as_p }}
{% trans "Shipping address" %} {% for hidden in shipping_form.hidden_fields %}{{ hidden }}{% endfor %} {{ shipping_form.as_p }}
{% trans "Billing address" %} {% for hidden in billing_form.hidden_fields %}{{ hidden }}{% endfor %} {{ billing_form.as_p }}
{% trans "Payment method" %} {{ payment_form.as_p }}
{% trans "Delivery method" %} {{ delivery_form.as_p }}
{% trans "Extra annotation" %} {{ extra_form.as_p }}
{% trans "Accept condition" %} {{ accept_form.as_p }}
{% url 'shopit-account-detail' as account_url %} {% addtoblock "js" %} {% endaddtoblock %} {% endblock %}