{% extends "admin/base.html" %} {% block page_title %}患教投稿审核{% endblock %} {% block content %}
患教投稿({{cases|length}})
每人每月最多 次(0=禁用)
{% for c in cases %}
{{c.staff.name if c.staff}} · {{c.staff.store.chain.name if (c.staff and c.staff.store and c.staff.store.chain) else ''}} {{c.disease}}
{{c.staff.phone if c.staff}} · {{c.customer_gender or '-'}}/{{c.customer_age or '-'}}岁 · {{c.created_at.strftime('%Y-%m-%d %H:%M') if c.created_at}}
推荐原因:{{c.recommend_reason}}
服务过程:{{c.service_process}}
{% if c.customer_feedback %}
顾客反馈:{{c.customer_feedback}}
{% endif %} {% if c.status=='pending' %}
{% else %}
{% if c.status=='approved'%}已通过 +{{c.points_earned}}分{% else %}已驳回:{{c.reject_reason or '-'}}{% endif %}
{% if current_user.role == 'super' %}
{% endif %} {% endif %}
{% else %}
暂无投稿
{% endfor %}
{% include "admin/_region_data.html" %} {% endblock %}