{% extends "base.html" %} {% from "_pagination.html" import render_pagination %} {% set active_page = "admin" %} {% block title %}管理台{% endblock %} {% block content %}

管理台

管理用户账号、注册状态和预测记录。

用户注册

用户管理

查看用户状态,发送重置通知或撤销受信设备。

{% for user in user_pagination.items %}

{{ user.username }}

{{ user.email or '未设置邮箱' }}

邮箱状态
{{ '已验证' if user.email_verified_at else '未验证' }}
受信设备
{{ active_device_counts.get(user.id, 0) }} 台
注册时间
{{ format_datetime(user.created_at) }}
{% if user.email %}
{% endif %}
{% else %}

未找到匹配用户。

{% endfor %}
{% if user_pagination.total %} {% endif %}

上传记录

{% for record in records %} {% else %}

暂无上传记录。

{% endfor %}
{{ render_pagination(pagination, 'main.admin_dashboard') }}
{% endblock %}