From 5be696db9d5541333bc689560a0f89d9c75b0d3f Mon Sep 17 00:00:00 2001 From: XingQue Date: Sun, 28 Jun 2026 00:35:50 +0800 Subject: [PATCH] fix: repair jituan/urls.py IndentationError on identity_tag import --- jituan/urls.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/jituan/urls.py b/jituan/urls.py index 616cb4d..5e8f0c8 100644 --- a/jituan/urls.py +++ b/jituan/urls.py @@ -74,6 +74,7 @@ from jituan.views_club_catalog import ( ClubShangpinLeixingListView, ) from jituan.views_shenhe_manage import ClubKhgglAddView +from jituan.views_identity_tag import ( IdentityTagBindListView, IdentityTagBindView, IdentityTagListView, @@ -125,6 +126,7 @@ urlpatterns = [ path('houtai/hthqfklb', FaKuanLieBiaoView.as_view(), name='jituan_penalty_list'), path('houtai/glyclfk', FaKuanChuLiView.as_view(), name='jituan_penalty_action'), path('houtai/htfksc', FaKuanChuangJianView.as_view(), name='jituan_penalty_create'), + path('houtai/kefu-cfgl', KefuPunishmentListView.as_view(), name='jituan_kefu_cfgl'), path('houtai/khggl', KhgglView.as_view(), name='jituan_khggl'), path('houtai/shgxgsj', ShgxgsjView.as_view(), name='jituan_shgxgsj'), path('houtai/khggl-add', ClubKhgglAddView.as_view(), name='jituan_khggl_add'),