From edb801b95e27949d5c4f9bc3eecee3396d8b7246 Mon Sep 17 00:00:00 2001 From: Lan Hui <1348141770@qq.com> Date: Thu, 27 Jan 2022 12:45:09 +0800 Subject: [PATCH] Show the expiry notice if the account has expired. --- app/templates/{out_time.html => expiry.html} | 4 ++-- app/user_service.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) rename app/templates/{out_time.html => expiry.html} (86%) diff --git a/app/templates/out_time.html b/app/templates/expiry.html similarity index 86% rename from app/templates/out_time.html rename to app/templates/expiry.html index 43caa0a..64e59f7 100644 --- a/app/templates/out_time.html +++ b/app/templates/expiry.html @@ -6,10 +6,10 @@
您的账号{{ username }}过期。
-为了提高服务质量,English Pal 收取会员费用, 每天0元。
+为了提高服务质量,English Pal 收取会员费用, 每天1元。
请决定你要试用的时间长度,扫描下面支付宝二维码支付。 支付时请注明English Pal Membership Fee。 我们会于12小时内激活账号。
-如果有问题,请加开发者微信 torontohui。
+如果有问题,请联系开发者 dev@qq.com。
diff --git a/app/user_service.py b/app/user_service.py index 122a375..139c140 100644 --- a/app/user_service.py +++ b/app/user_service.py @@ -93,8 +93,8 @@ def userpage(username): # 用户过期 user_expiry_date = session.get('expiry_date') - # if datetime.now().strftime('%Y%m%d') > user_expiry_date: - # return render_template('out_time.html') + if datetime.now().strftime('%Y%m%d') > user_expiry_date: + return render_template('expiry.html') # 获取session里的用户名 username = session.get('username')