{% 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 proxy_rows = ops.containers | selectattr("Names", "equalto", "mihomo") | list %}
首页总览 · 当前系统状态与发送概况
启用账号 {{ enabled_accounts|length }}
总账号 {{ accounts|length }}
👥
今日成功目标 {{ send_summary.today_sent_targets }}
成功结果来自浏览器真实发送确认
🎯
失败待补发 {{ send_summary.today_failed_targets }}
失败会进入补发与重试队列
待发送 / 未处理 {{ send_summary.today_pending_targets + send_summary.today_unprocessed_targets }}
{{ ops.daily_schedule or "未配置发送窗口" }}

交互式登录浏览器

直接在网页中操作远端浏览器完成扫码、验证码与创作者中心登录,登录完成后可一键保存当前账号。

发送控制台摘要

查看每个账号今天的发送状态分布,并快速进入发送控制台做批量补发或针对性重试。

打开发送控制台
启用账号 {{ send_summary.enabled_accounts }}
A
今日成功目标 {{ send_summary.today_sent_targets }}
失败待补发 {{ send_summary.today_failed_targets }}
!
待发送 / 未处理 {{ send_summary.today_pending_targets + 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 %} {% else %}
当前没有账号。先通过交互式登录浏览器登录并保存账号。
{% endif %}

容器状态

{% for row in ops.containers %} {% else %} {% endfor %}
Name Status Image
{{ row.Names }} {{ row.Status }} {{ row.Image }}
当前没有可见容器状态。

Cron / 调度

{{ ops.crontab or "当前没有 crontab 任务。" }}

日志预览

{{ ops.log_tail or "暂无日志" }}
{% endblock %} {% block scripts %} {% endblock %}