{% extends "base.html" %} {% load i18n %} {% block title %}Check Out{% endblock %} {% block content %}

{% trans "CheckOut" %}

{% trans "Order List" %}

{% for item in cart %} {% with product=item.product %} {% endwith %} {% endfor %}
Kai's Store
{{ product.name }} ${{ product.price }} X {{ item.quantity }} ${{ item.total_price }}
{% trans "Total" %}: ${{ cart.get_total_price}}

{% trans "Receiver Choose" %}

{{ ordercreateform.as_p }}

{% csrf_token %}
{% endblock %}