{% extends 'base.html' %} {% load crispy_forms_tags %} {% block body_block %}

Shipping Address > Checkout

{{ form|crispy }} {% csrf_token %}
    {% for order_item in order_items %}
  • {{ order_item.item.name }} x {{ order_item.quantity }} Qty
  • {% endfor %}


{% if saved_address.is_fully_filled %} Make Payment {% else %}

Please fill up all the information to make a payment

{% endif %}




{% endblock %}