{% extends "base.html" %} {% block title %}用户管理{% endblock %} {% block content %}

用户管理

{% for user in users %} {% endfor %}
ID 用户名 邮箱 角色 封禁状态 注册时间 操作
{{ user.id }} {{ user.username }} {{ user.email }} {{ user.role }} {% if user.banned == 0 %} 正常 {% else %} 已封禁 {% endif %} {{ user.created_at }}
{% if user.banned == 0 %} {% else %} {% endif %}
{% endblock %}