{% extends "base.html" %} {% block title %}{% if active_page == "welfare" %}福利车位 - GPT Team 管理系统{% else %}控制台 - GPT Team 管理系统{% endif %}{% endblock %} {% block content %}
{{ stats.total_teams }}
Team 总数
{{ stats.available_teams }}
可用 Team
{% if active_page == "welfare" %}
{{ stats.remaining_spots }}
福利剩余车位
通用兑换码
{{ stats.welfare_code or '-' }}
剩余次数 {{ stats.welfare_code_remaining }} / {{ stats.welfare_code_limit }}
{% else %}
{{ stats.total_codes }}
兑换码总数
{{ stats.used_codes }}
已使用兑换码
{% endif %}

{% if active_page == "welfare" %}福利 Team 列表{% else %}Team 列表{% endif %}

{% if search %} {% endif %} {% if status_filter %} {% endif %}
{% if active_page == "welfare" %} {% endif %}
{% if teams %}
{% for team in teams %} {% endfor %}
{% if active_page == "welfare" %}编号{% else %}ID{% endif %} 邮箱 Account ID Team 名称 成员数 订阅计划 到期时间 设备验证 状态 操作
{% if active_page == "welfare" %}{{ ((pagination.current_page - 1) * pagination.per_page) + loop.index }}{% else %}{{ team.id }}{% endif %} {{ team.email }} {% if team.account_role and team.account_role != 'account-owner' %} 已降级 {% endif %} {{ team.account_id or '-' }} {{ team.team_name or '-' }} {{ team.current_members }}/{{ team.max_members }} {{ team.subscription_plan or '-' }} {% if team.expires_at %} {{ team.expires_at|format_datetime }} {% else %} - {% endif %} {% if team.device_code_auth_enabled %} 已开启 {% else %} 未开启 {% endif %} {% if team.status == 'active' %} 可用 {% elif team.status == 'full' %} 已满 {% elif team.status == 'expired' %} 已过期 {% elif team.status == 'banned' %} 已封禁 {% elif team.status == 'error' %} 异常 {% else %} 未知 {% endif %}
{% if pagination %} {% endif %} {% else %}

暂无 Team 数据

{% endif %} {% endblock %} {% block extra_css %} {% endblock %} {% block extra_js %} {% endblock %}