{% extends "base.html" %} {% block title %}逐鹿人才-证件合同管理系统-用户管理{% endblock %} {% block content %}

用户管理

新建用户
{% for user in users %} {% endfor %}
用户名 姓名 部门 邮箱 角色 操作
{{ user.username }} {{ user.name }} {{ user.department }} {{ user.email }} {% if user.is_admin %} 管理员 {% else %} 普通用户 {% endif %}
编辑 {% if current_user.is_admin and user.id != current_user.id %}
{% endif %}
{% endblock %}