{% extends "base.html" %} {% block title %}用户 AI 兜底额度 - AgomTradePro{% endblock %} {% block content %}
迁移提示: 用户配额列表、单用户修正与批量下发已迁入 TUI。 打开 AI 用户配额治理。 当前 Classic 页面仅在兼容期内保留。

批量下发默认额度

逐用户额度状态

{% for quota in quotas %} {% endfor %}
用户 状态 每日额度 / 已用 每月额度 / 已用 备注 操作
{{ quota.username }} {% if quota.is_active %}启用{% else %}未启用{% endif %} {% if quota.daily_limit is not None %}${{ quota.daily_limit|floatformat:2 }}{% else %}未配置{% endif %} / ${{ quota.daily_spent|floatformat:4 }} {% if quota.monthly_limit is not None %}${{ quota.monthly_limit|floatformat:2 }}{% else %}未配置{% endif %} / ${{ quota.monthly_spent|floatformat:4 }} {{ quota.admin_note|default:"-" }}

编辑用户额度

×
{% endblock %}