{% extends 'base.html' %} {% block title %}后台管理 - 用户管理{% endblock %} {% block content %}

管理员后台 - 用户管理

商品管理 用户管理

可查看用户信息,并删除违规账号(会同步删除其发布的商品)。

{% if users %} {% for user in users %} {% endfor %}
ID 用户名 角色 联系方式 发布数量 操作
{{ user['id'] }} {{ user['username'] }} {% if user['role'] == 'admin' %} 管理员 {% else %} 普通用户 {% endif %} {{ user['contact'] if user['contact'] else '未填写' }} {{ user['item_count'] }} {% if user['role'] == 'admin' %} 管理员不可删 {% else %}
{% endif %}
{% else %}

暂无用户数据。

{% endif %}
{% endblock %}