{% extends "base.html" %} {% block title %}{% if active_page == "welfare" %}福利车位 - GPT Team 管理系统{% else %}控制台 - GPT Team 管理系统{% endif %}{% endblock %} {% block content %}
| {% 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 %} |
暂无 Team 数据