{% extends "base.html" %}
{% block title %}仪表盘 · SOCKS Manager{% endblock %}
{% block content %}
仪表盘
{% if proxies %}
| 名称 | 地址 | 状态 | 延迟 | 最后检测 |
{% for p in proxies %}
| {{ p.name }} |
{{ p.host }}:{{ p.port }} |
{{ p.status }} |
{{ "%.1f"|format(p.latency_ms) if p.latency_ms else '-' }}ms |
{{ p.last_check.strftime('%Y-%m-%d %H:%M') if p.last_check else '-' }} |
{% endfor %}
{% else %}
{% endif %}
| 时间 | 级别 | 操作 | 目标 | 详情 |
{% for l in recent %}
| {{ l.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} |
{{ l.level }} |
{{ l.action }} |
{{ l.target or '-' }} |
{{ l.detail or '-' }} |
{% endfor %}
{% endblock %}
{% block extra_script %}
{% endblock %}