{% extends "base.html" %} {% block title %}审计日志 · SOCKS Manager{% endblock %} {% block content %}
{% for l in logs %} {% endfor %}
时间事件用户来源 IP详情
{{ l.timestamp[:19].replace('T',' ') if l.timestamp else '-' }} {{ l.event }} {{ l.user or '-' }} {{ l.src_ip or '-' }} {{ l.detail or '-' }}
{% if not logs %}
暂无日志记录
{% endif %}
{% if total > 50 %} {% endif %}
{% endblock %}