{% extends "base.html" %} {% block title %}账号详情 - 微博超话签到{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

{{ account.remark or account.weibo_user_id }}

UID: {{ account.weibo_user_id }}
✏️ 编辑
📋 账号信息
状态 {% if account.status == 'active' %}正常 {% elif account.status == 'pending' %}待验证 {% elif account.status == 'invalid_cookie' %}Cookie 失效 {% elif account.status == 'banned' %}已封禁 {% endif %}
备注{{ account.remark or '-' }}
添加时间{{ account.created_at[:10] }}
上次检查{{ account.last_checked_at[:10] if account.last_checked_at else '-' }}
⚡ 快捷操作
🎯 选择超话签到 ⏰ 添加定时任务
⏰ 定时任务
{% if tasks %} {% for task in tasks %}
{{ task.cron_expression }} {% if task.is_enabled %}已启用 {% else %}已禁用{% endif %}
{% endfor %} {% else %}

暂无定时任务

{% endif %}
📝 签到记录
{% if logs['items'] %} {% for log in logs['items'] %}
{{ log.topic_title or '-' }}
{% if log.status == 'success' %}签到成功 {% elif log.status == 'failed_already_signed' %}今日已签 {% elif log.status == 'failed_network' %}网络错误 {% elif log.status == 'failed_banned' %}已封禁 {% endif %}
{% if log.reward_info %}{{ log.reward_info.get('points', '-') }} 经验{% else %}-{% endif %}
{{ log.signed_at[:10] }}
{% endfor %} {% if logs['total'] > logs['size'] %} {% endif %} {% else %}

暂无签到记录

{% endif %}
{% endblock %}