{% extends "admin/base.html" %} {% block page_title %}集赞审核{% endblock %} {% block content %}
集赞提交({{subs|length}})
发布集赞任务 任务列表
{% for su in subs %}
{{su.staff.name if su.staff}} · {{su.staff.store.chain.name if (su.staff and su.staff.store and su.staff.store.chain) else ''}} {{su.task.title if su.task}}
{{su.staff.phone if su.staff}} · 自报 {{su.claimed_likes}} 赞 · {{su.created_at.strftime('%m-%d %H:%M') if su.created_at}}
{% if su.status=='pending' %}
{% else %}
{% if su.status=='approved'%}已通过 +{{su.points_earned}}分{% else %}已驳回:{{su.reject_reason or '-'}}{% endif %}
{% if current_user.role == 'super' %}
{% endif %} {% endif %}
{% else %}
暂无提交
{% endfor %}
{% include "admin/_region_data.html" %} {% endblock %}