{% extends "base.html" %} {% block title %}管理面板 - 微博超话签到{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

🛡️ 管理面板

{{ users|length }}
总用户数
{{ users|selectattr('is_active')|list|length }}
活跃用户
{{ invite_codes|rejectattr('is_used')|list|length }}
可用邀请码
🎟️ 邀请码管理
{% if invite_codes %} {% for code in invite_codes %}
{{ code.code }} {% if code.is_used %} 已使用 {% else %} 可用 {% endif %}
{% if not code.is_used %}
{% endif %}
{% endfor %} {% else %}

暂无邀请码,点击上方按钮生成

{% endif %}
👥 用户管理
{% for u in users %}
{{ u.username }} {% if u.is_admin %}管理员{% endif %}
{{ u.email or '-' }}
{% if u.is_active %} 正常 {% else %} 已禁用 {% endif %} {% if not u.is_admin %}
{% endif %}
{% endfor %}
{% endblock %}