{% extends "admin/_layout.html" %} {% block title %}用户管理 - TMH 管理后台{% endblock %} {% block admin_breadcrumb %} / 用户管理 {% endblock %} {% block admin_content %}

用户管理

{% if can('user:create') %} {% endif %}
{% for u in users %} {% endfor %}
名称 邮箱 角色 团队 状态 创建时间 操作
{{ u.name }} {{ u.email }} {{ u.role }} {{ u.team_name or '-' }} {% if u.is_active %} 启用 {% else %} 禁用 {% endif %} {{ u.created_at[:16] if u.created_at else '-' }} {% if can('user:update') %} {% endif %} {% if can('user:toggle_active') and u.id != user.id %} {% endif %} {% if can('user:manage_roles') %} {% endif %}
{% if not users %}

暂无用户数据。

{% endif %} {% endblock %}