{% extends "base.html" %} {% block title %}订单结算 - 太白购物商城{% endblock %} {% block head %} {% endblock %} {% block content %}
收货地址
新增地址
{% for address in addresses %}
{{ address.receiver_name }}

{{ address.receiver_phone }}

{{ address.get_full_address() }}

{% endfor %} {% if not addresses %}
暂无收货地址

请先添加收货地址,然后继续下单

立即添加
{% endif %}
商品信息
{% for item in cart_items %}
{{ item.product.name }}
{{ item.product.name }}
{% if item.spec_combination %}

{{ item.spec_combination }}

{% endif %} {% if item.product.brand %} {{ item.product.brand }} {% endif %}
× {{ item.quantity }}
¥{{ "%.2f"|format(item.get_total_price()) }}
{% endfor %}
配送方式
支付方式
订单备注
订单摘要
商品总价: ¥{{ "%.2f"|format(total_amount) }}
运费: ¥{{ "%.2f"|format(shipping_fee) }}

应付总额: ¥{{ "%.2f"|format(final_amount) }}
点击"提交订单"表示您同意 《用户协议》
{% endblock %} {% block scripts %} {% endblock %}