{% extends "admin/base.html" %} {% block page_title %}已删除店员{% endblock %} {% block content %}
返回店员列表
{% for s in staff %} {% else %} {% endfor %}
序号 姓名手机号门店连锁积分操作
{{loop.index}} {{s.name}} {{s.phone}} {{s.store.name if s.store else '-'}} {{s.store.chain.name if (s.store and s.store.chain) else '-'}} {{s.points_balance}} 详情
彻底删除
没有已删除的店员
{% endblock %}