diff --git a/app/task/general.py b/app/task/general.py index 7bb3d61..97c953d 100644 --- a/app/task/general.py +++ b/app/task/general.py @@ -695,7 +695,7 @@ class GeneralManager: ) if len(result["failed_user"]) > 0: result_text += ( - f"{self.mode}未成功的用户: \n{"\n".join(result['failed_user'])}\n" + f"{self.mode} 未成功的用户: \n{"\n".join(result['failed_user'])}\n" ) if len(result["waiting_user"]) > 0: result_text += f"\n未开始{self.mode}的用户: \n{"\n".join(result['waiting_user'])}\n" diff --git a/res/html/general_statistics.html b/res/html/general_statistics.html index 6bc3c15..3d7b823 100644 --- a/res/html/general_statistics.html +++ b/res/html/general_statistics.html @@ -166,16 +166,16 @@
-

代理信息:{{ sub_info }}

+

代理信息:{{ user_info }}

开始时间:{{ start_time }}

结束时间:{{ end_time }}

执行结果: - {% if sub_result == '代理成功' %} - {{ sub_result }} - {% elif sub_result == '代理失败' %} - {{ sub_result }} + {% if user_result == '代理成功' %} + {{ user_result }} + {% elif user_result == '代理失败' %} + {{ user_result }} {% else %} - {{ sub_result }} + {{ user_result }} {% endif %}