{% extends "base.html" %} {% block title %}用户管理 · SOCKS Manager{% endblock %} {% block content %}
{% for u in users %} {% endfor %}
用户名状态流量限速并发 白名单/黑名单过期创建时间操作
{{ u.username }} {% if u.banned %}封禁{% endif %} {% if not u.enabled %}禁用{% endif %} {{ '正常' if u.active else '不可用' }} ↑{{ "%.0f"|format(u.bytes_in/1024/1024) }}M ↓{{ "%.0f"|format(u.bytes_out/1024/1024) }}M {% if u.total_traffic_mb %}
{{ "%.0f"|format(u.bytes_total_mb) }} / {{ u.total_traffic_mb }} MB{% endif %}
↓{{ u.bandwidth_down or '不限' }} ↑{{ u.bandwidth_up or '不限' }} Mbps {{ u.max_concurrent }} {% if u.ip_whitelist %}白 {{ u.ip_whitelist|length }}{% endif %} {% if u.ip_blacklist %}黑 {{ u.ip_blacklist|length }}{% endif %} {% if not u.ip_whitelist and not u.ip_blacklist %}-{% endif %} {{ u.expire_at or '不过期' }} {{ u.created_at[:10] }}
{% if not users %}
暂无用户
{% endif %}
{% if pages > 1 %} {% endif %}
{% endblock %} {% block extra_script %} {% endblock %}