{# backend/templates/admin.html #} {% extends "base.html" %} {% block title %}관리자 패널 - Dell Server Info{% endblock %} {% block content %}

관리자 패널

사용자 관리 및 시스템 설정을 수행합니다.

총 사용자

{{ users|length }}

활성 사용자
{% set active_users = users | selectattr("is_active") | list %}

{{ active_users|length }}

승인 대기

{{ (users|length) - (active_users|length) }}

사용자 목록
{% for user in users %} {% endfor %} {% if not users %} {% endif %}
NO 이름 ID (Email) 상태 관리
{{ loop.index }}
{{ user.username[:1] | upper }}
{{ user.username }}
{{ user.email }} {% if user.is_active %} Active {% else %} Pending {% endif %} {% if user.is_admin %} Admin {% endif %}
{% if not user.is_active %} 승인 {% endif %} 삭제
사용자가 없습니다.
{# ========== Change Password Modal ========== #} {% block scripts %} {{ super() }} {% endblock %} {% endblock %}