{% extends "base.html" %} {% block title %}人员管理 - 工厂工时效率管理系统{% endblock %} {% block content %}

人员管理

{% for user in users %} {% endfor %}
用户名 权限等级 隶属部门 线别 创建时间 操作
{{ user.username }} {% if user.is_admin() %} 管理员 {% elif user.is_lead() %} 组长 {% endif %} {{ user.department if user.department_id else '-' }} {{ user.line if user.line_id else '-' }} {{ user.created_at.strftime('%Y-%m-%d') if user.created_at else '-' }} {% if user.id != current_user.id %} {% else %} 当前用户 {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}