{% extends 'happy_shop/user_profile.html' %} {% load tpl_tags %} {% block menmber %}

订单状态:{{ order.get_pay_status_display }}

订单信息

收货信息

商品信息

订单日期:{{ order.add_date }}

{% for goods in order.happyshopordersku_set.all %}

{{ goods.sku.spu.title }}

规格: {{ goods.sku.options.all|join:"," }}

数量: {{ goods.count }} 单价: {{ goods.price }}

{{ order.get_pay_status_display }}
{% endfor %}
{% if order.pay_status == 1 %} 支付宝支付 {% elif order.pay_status == 3 %} 确认收货 {% elif order.pay_status == 4 %} 去评价 {% endif %} 查看详情
{% endblock %}