From dac0655cfff1ee8c11cc193bd07026b6ebfd04be Mon Sep 17 00:00:00 2001 From: wzj <244142824@qq.com> Date: Sat, 14 Jun 2025 11:02:39 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E5=A4=8D=E6=98=BE=E7=A4=BA=E8=AF=81?= =?UTF-8?q?=E4=B9=A6=E5=88=9B=E5=BB=BA=E8=80=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.py b/app.py index a301ef0..87346b5 100644 --- a/app.py +++ b/app.py @@ -883,7 +883,7 @@ def certificate_detail(cert_id): # 获取CA信息 ca = get_ca_by_id(cert['ca_id']) - return render_template('certificate_detail.html', cert=cert, ca=ca) + return render_template('certificate_detail.html', cert=cert, ca=ca, get_username=get_username) @app.route('/certificates//revoke', methods=['GET', 'POST'])