{% extends "base.html" %} {% block title %}{{ t.dashboard_title }}{% endblock %} {% block page_title %}{{ t.dashboard_title }}{% endblock %} {% block page_desc %}{{ t.dashboard_desc }}{% endblock %} {% block content %}
{{ t.stat_subdomains }}
🌐
{{ t.loading }}
{{ t.stat_local_accounts }}
🔑
{{ stats.account_count }}
{{ t.stat_local_accounts_hint }}
{{ t.stat_api_calls }}
{{ stats.total }}
{{ t.stat_api_calls_hint.format(n=stats.last24h) }}
{{ t.stat_failed_calls }}
{{ stats.failed }}
{{ t.stat_failed_calls_hint.format(n=stats.success) }}

📊 {{ t.quota_overview }}

{{ t.loading }}

🕐 {{ t.recent_activity }}

{{ t.view_all }}
{% if stats.recent %}
{% for r in stats.recent %} {% endfor %}
{{ '✓' if r.success else '✗' }}
{{ r.method }} {{ r.endpoint }} / {{ r.action }}
{{ r.created_at|fmt_date }} · {{ r.duration_ms|fmt_dur }} · {{ r.account_name or '—' }}
{% if r.error %}
{{ r.error }}
{% endif %}
{% else %}
暂无动态,执行操作后将显示在这里。
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}