{% extends "admin/base.html" %} {% block page_title %}管理员管理{% endblock %} {% block content %}
| 序号 | 姓名 | 手机号 | 角色 | 状态 | 操作 |
|---|---|---|---|---|---|
| {{loop.index}} | {{a.name}}{% if a.id == current_user.id %}我{% endif %} | {{a.phone}} | {% if a.role=='super' %}超级管理员{% else %}管理员{% endif %} | {% if a.status=='active' %}正常{% else %}停用{% endif %} | {% if a.id == current_user.id %} 当前账号 {% else %} {% endif %} |
| 暂无管理员 | |||||