{% extends "admin/base.html" %} {% block page_title %}兑换订单{% endblock %} {% block content %}
| 序号 | 店员 | 商品 | 积分 | 收货人/地址 | 状态 | 快递单号 | 时间 | 操作 |
|---|---|---|---|---|---|---|---|---|
| {{loop.index}} | {{o.staff.name if o.staff}} {{o.staff.phone if o.staff}} |
{{o.product.name if o.product}} | {{o.points_cost}} | {{o.receiver}} {{o.receiver_phone}} {{o.address}} |
{% if o.status=='pending'%}{{smap[o.status]}}{% else %}{{smap.get(o.status,o.status)}}{% endif %} | {{o.tracking_no or '-'}} | {{o.created_at.strftime('%m-%d %H:%M') if o.created_at}} | {% if o.status=='pending' %} {% elif o.status=='shipped' %} {% endif %} {% if current_user.role == 'super' %} {% endif %} |
| 暂无订单 | ||||||||