diff --git a/api/templates/show_work.html b/api/templates/show_work.html
index 992480f..074a873 100644
--- a/api/templates/show_work.html
+++ b/api/templates/show_work.html
@@ -1,118 +1,97 @@
{% extends "base.html" %}
{% block title %}RustDesk WebUI{% endblock %}
{% block legend_name %}综合屏{% endblock %}
-{% block content %}
+{% block content %}
-
+
-
-
-
-
-
-
-
-
-
- | 客户端ID |
- 版本 |
- 连接密码 |
- 系统用户名 |
- 计算机名 |
- 别名 |
- 平台 |
- 系统 |
- CPU |
- 内存 |
- 注册时间 |
- 更新时间 |
-
-
-
-
-
- {% for one in single_info %}
-
- | {{one.rid}} |
- {{one.version}} |
- {{one.has_rhash}} |
- {{one.username}} |
- {{one.hostname}} |
- {{one.alias}} |
- {{one.platform}} |
- {{one.os}} |
- {{one.cpu}} |
- {{one.memory}} |
- {{one.create_time}} |
- {{one.update_time}} |
-
-
-
-
- {% endfor %}
-
-
+
+
+
+ | 客户端ID |
+ 版本 |
+ 连接密码 |
+ 系统用户名 |
+ 计算机名 |
+ 别名 |
+ 平台 |
+ 系统 |
+ CPU |
+ 内存 |
+ 注册时间 |
+ 更新时间 |
+
+
+
+ {% for one in single_info %}
+
+ | {{one.rid}} |
+ {{one.version}} |
+ {{one.has_rhash}} |
+ {{one.username}} |
+ {{one.hostname}} |
+ {{one.alias}} |
+ {{one.platform}} |
+ {{one.os}} |
+ {{one.cpu}} |
+ {{one.memory}} |
+ {{one.create_time}} |
+ {{one.update_time}} |
+
+ {% endfor %}
+
+
-
-
-{% if u.is_admin %}
-
+
+ {% if u.is_admin %}
+
-
-
-
-
-
-
-
-
-
- | 客户端ID |
- 所属用户 |
- 版本 |
- 系统用户名 |
- 计算机名 |
- 系统 |
- CPU |
- 内存 |
- 注册时间 |
- 更新时间 |
+
+
+
+ | 客户端ID |
+ 所属用户 |
+ 版本 |
+ 系统用户名 |
+ 计算机名 |
+ 系统 |
+ CPU |
+ 内存 |
+ 注册时间 |
+ 更新时间 |
+
+
+
-
-
-
-
- {% for one in all_info %}
-
- | {{one.rid}} |
- {{one.rust_user}} |
- {{one.version}} |
- {{one.username}} |
- {{one.hostname}} |
- {{one.os}} |
- {{one.cpu}} |
- {{one.memory}} |
- {{one.create_time}} |
- {{one.update_time}} |
-
-
-
-
- {% endfor %}
-
-
+ {% for one in all_info %}
+
+ | {{one.rid}} |
+ {{one.rust_user}} |
+ {{one.version}} |
+ {{one.username}} |
+ {{one.hostname}} |
+ {{one.os}} |
+ {{one.cpu}} |
+ {{one.memory}} |
+ {{one.create_time}} |
+ {{one.update_time}} |
+
+ {% endfor %}
+
+
-{% endif %}
+ {% endif %}
-
+
+
{% endblock %}
\ No newline at end of file