{% extends 'base.html' %} {% block content %} {% load crispy_forms_tags %} Checkout form {% comment %} {% csrf_token %} {{form|crispy}} Continue to checkout {% endcomment %} {% csrf_token %} {% if not request.user.is_authenticated %} {% comment %} {% endcomment %} {{form.FirstName}} First name {% comment %} {% endcomment %} {{form.LastName}} Last name @ {% comment %} {% endcomment %} {{form.UserName}} {% comment %} {% endcomment %} {{form.Email}} Email (optional) {% endif %} {% comment %} {% endcomment %} {{form.street_address}} Address {% comment %} {% endcomment %} {{form.apartment_address}} Address 2 (optional) Country {% comment %} Choose... Nairobi {% endcomment %} {{form.country}} Please select a valid country. State/County Choose... CBD Please provide a valid state. Zip {% comment %} {% endcomment %} {{form.zip}} Zip code required. {{form.same_shipping_address}} Shipping address is the same as my billing address {{form.save_info}} Save this information for next time {% for name, value in form.fields.payment_option.choices %} {{value}} {% endfor %} Continue to checkout Your cart 3 Product name Brief description $12 Second product Brief description $8 Third item Brief description $5 Promo code EXAMPLECODE -$5 Total (USD) $20 Redeem {% endblock content %}