From 8a752774eee6450161341bf5b7fca4bd4c274ee5 Mon Sep 17 00:00:00 2001 From: yanzuoguang Date: Sat, 8 Nov 2025 11:12:51 +0800 Subject: [PATCH] =?UTF-8?q?fix(template):=E4=BF=AE=E5=A4=8D=E5=8F=B3?= =?UTF-8?q?=E5=88=97=E6=A8=A1=E6=9D=BF=E8=B0=83=E7=94=A8=E5=8F=82=E6=95=B0?= =?UTF-8?q?=E4=BC=A0=E9=80=92=E9=97=AE=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 移除了右列模板调用时多余的参数传递 - 确保模板调用符合无参数传递的预期行为 -修正了可能因此导致的模板渲染错误 --- 32-platform/sportsstore/templates/store_layout.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/32-platform/sportsstore/templates/store_layout.html b/32-platform/sportsstore/templates/store_layout.html index ba3a0c4..8655f35 100644 --- a/32-platform/sportsstore/templates/store_layout.html +++ b/32-platform/sportsstore/templates/store_layout.html @@ -15,7 +15,7 @@ {{ template "left_column" . }}
- {{ template "right_column" . }} + {{ template "right_column" }}