{% extends "base.html" %} {% block title %}用户审核 - 管理面板{% endblock %} {% block content %}

待审核用户 ({{ pending_users|length }})

{% if pending_users %}
{% for user in pending_users %}

学生证照片:

Student ID
{% endfor %}
{% else %}

暂无待审核用户

{% endif %}

最近批准的用户

{% if approved_users %}
{% for user in approved_users %}
{{ user.username[0].upper() }}
{{ user.username }}

{{ user.email }} · 加入于 {{ user.created_at.strftime('%Y-%m-%d') }}

已批准
{% endfor %}
{% else %}

暂无已批准用户

{% endif %}
{% endblock %}