{% extends 'layouts/base.html' %} {% load price_tags %} {% block title %}نهایی سازی سفارش{% endblock %} {% block content %}

اطلاعات سفارش

{% csrf_token %}
{{ form.full_name }} {% if form.full_name.errors %}
{{ form.full_name.errors }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %}
{{ form.phone.errors }}
{% endif %}
{{ form.address }} {% if form.address.errors %}
{{ form.address.errors }}
{% endif %}
{{ form.note }} {% if form.note.errors %}
{{ form.note.errors }}
{% endif %}

خلاصه سبد خرید

{% for item in cart_items %}
{{ item.food.name }}
تعداد: {{ item.quantity }}
{% widthratio item.food.price 1 item.quantity as item_total %} {{ item_total|price_format }}
{% endfor %}
مبلغ کل: {{ total_price|price_format }}
{% endblock %}