{% extends "base.html" %}
{% block title %}사용자 관리{% endblock %}
{% block head_extra %}
{% endblock %}
{% block content %}
사용자 관리
{% for user in users %}
아이디
이름
역할
페이지 권한
상태
관리자
최종접속기록(KST)
수정일
{% else %}
{{ user.display_name }}
{{ ', '.join(user.roles) }}
{{ '활성' if user.is_active else '비활성' }}
{{ '예' if user.is_admin else '-' }}
{% if user.last_login_at %}
{% else %}
-
{% endif %}
{{ user.updated_at }}
{% endfor %}
사용자가 없습니다.