{% extends phone_or_desktop %} {% load my_filters %} {% block title %}RustDesk WebUI{% endblock %} {% block legend_name %}{{ "Connection Log" | translate }}{% endblock %} {% load static %} {% block content %}
{{ "Connection Log" }}:【{{u.username}}】
{% for one in page_obj %} {% endfor %}
User IP User ID User Alias Remote ID Remote Alias Connection Start Time Connection End Time Duration (HH:MM:SS)
{{one.from_ip}} {{one.from_id}} {{one.from_alias}} {{one.rid}} {{one.alias}} {{one.conn_start}} {{one.conn_end}} {{one.duration}}
{% if page_obj.has_previous %} {% endif %} {% if page_obj.paginator.num_pages > 1 %} {{ "页码" | translate }} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% endif %} {% if page_obj.has_next %} {% endif %}
{% endblock %}