{# 账户表格组件 #} {% macro account_table(accounts_data) %} {% if accounts_data %} {% for account in accounts_data %} {% endfor %} {% else %} {% endif %}
账号ID 状态 过期时间 剩余时长 累计对话 操作
{{ account.account_id }}
{{ account.status_text }} {{ account.expires_at or '未设置' }} {{ account.expire_display }} {{ account.conversation_count }}
{% if account.is_expired %} {% elif account.is_disabled or account.is_permanently_failed %} {% else %} {% endif %}
暂无账户
{% endmacro %}