From 30c392c39eb40280367a098dd23b626bede2bbd4 Mon Sep 17 00:00:00 2001 From: liuwei Date: Thu, 3 Apr 2025 10:51:09 +0800 Subject: [PATCH] =?UTF-8?q?=E5=8A=A0=E5=85=A5=E9=80=9A=E8=AE=AF=E5=BD=95?= =?UTF-8?q?=E7=AE=A1=E7=90=86=E5=8A=9F=E8=83=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../templates/contacts_management.html | 300 ++++++++++++++++++ 1 file changed, 300 insertions(+) create mode 100644 admin/dashboard/templates/contacts_management.html diff --git a/admin/dashboard/templates/contacts_management.html b/admin/dashboard/templates/contacts_management.html new file mode 100644 index 0000000..34cca41 --- /dev/null +++ b/admin/dashboard/templates/contacts_management.html @@ -0,0 +1,300 @@ +{% extends "base.html" %} + +{% block title %}通讯录管理 - 机器人管理后台{% endblock %} + +{% block content %} + +
+ + + +
+ 通讯录管理 + + 刷新数据 + + + +
+ + + + + +
总联系人数
+
{% raw %}{{ statistics.total }}{% endraw %}
+
+
+ + +
群组数
+
{% raw %}{{ statistics.groups }}{% endraw %}
+
+
+ + +
个人联系人数
+
{% raw %}{{ statistics.personal }}{% endraw %}
+
+
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + +
+ +
+ + +
+
+
+
+ + + + + {% raw %}{{ currentGroup.wxid }}{% endraw %} + {% raw %}{{ currentGroup.name }}{% endraw %} + + + + + + + + {% raw %}{{ currentUser.wxid }}{% endraw %} + {% raw %}{{ currentUser.name }}{% endraw %} + + + +
+{% endblock %} + +{% block scripts %} + + + +{% endblock %} \ No newline at end of file