{% extends "base.html" %} {% block nav_key %}dashboard{% endblock %} {% block title %}控制台概览 | 自动续火花{% endblock %} {% block page_title %}控制台概览{% endblock %} {% block page_subtitle %}发送状态、账号健康和关键运维入口{% endblock %} {% block topbar_actions %} 登录工作区 {% endblock %} {% block content %} {% set enabled_accounts = accounts | selectattr("enabled", "equalto", true) | list %} {% set send_summary = ops.send_console.summary %} {% set pending_total = send_summary.today_pending_targets + send_summary.today_unprocessed_targets %} {% set proxy_rows = ops.containers | selectattr("Names", "equalto", "mihomo") | list %}
启用账号 {{ enabled_accounts|length }} 总账号 {{ accounts|length }}
A
今日成功 {{ send_summary.today_sent_targets }} 浏览器确认发送成功
失败待补发 {{ send_summary.today_failed_targets }} 进入重试队列
!
待发送 {{ send_summary.today_pending_targets }} {{ ops.daily_schedule or "未配置窗口" }}
未处理 {{ send_summary.today_unprocessed_targets }} 等待后续调度

今日发送摘要

按账号展示今日发送、失败和待处理状态,详细明细可继续展开查看。

查看明细
{% for row in ops.send_console.accounts %} {% else %} {% endfor %}
账号 今日成功 失败待补发 待发送 未处理 最近失败原因
{{ row.username }}
{{ row.unique_id }}
{{ row.sent_targets|length }} {{ row.failed_targets|length }} {{ row.pending_targets|length }} {{ row.unprocessed_targets|length }} {{ row.last_failure_reason or "-" }}
当前没有发送摘要数据。

账号健康

快速确认账号启用状态、目标好友数量和登录态缓存规模。

管理账号
{% if accounts %}
{% for account in accounts %}
{% endfor %}
{% else %}
还没有账号。前往登录工作区完成扫码登录并保存账号。
{% endif %}
{% endblock %}