{% extends 'inventory/base.html' %} {% load static %} {% block title %}用户管理{% endblock %} {% block content %}

用户管理

创建新用户
{% if users %}
{% for user in users %} {% endfor %}
用户名 姓名 邮箱 用户组 最后登录 状态 操作
{{ user.username }} {{ user.get_full_name|default:"-" }} {{ user.email|default:"-" }} {% for group in user.groups.all %} {{ group.name }} {% empty %} - {% endfor %} {{ user.last_login|date:"Y-m-d H:i"|default:"-" }} {% if user.is_active %} 活跃 {% else %} 禁用 {% endif %}
{% if user.id != request.user.id %} {% endif %}
{% else %}
没有找到匹配的用户记录
{% endif %}
{% endblock %}