From 7a9bf93f4b89612eb819d59d9b57f5ed329bf38a Mon Sep 17 00:00:00 2001 From: AKW <2497744746@qq.com> Date: Wed, 13 Dec 2023 11:43:09 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=9C=BA=E5=99=A8=E4=BA=BA?= =?UTF-8?q?=E8=B7=AF=E7=94=B1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- yzk_wechat_event/urls.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/yzk_wechat_event/urls.py b/yzk_wechat_event/urls.py index 349ebd9..b56d78e 100644 --- a/yzk_wechat_event/urls.py +++ b/yzk_wechat_event/urls.py @@ -15,8 +15,9 @@ Including another URLconf 2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) """ from django.contrib import admin -from django.urls import path +from django.urls import path, include urlpatterns = [ path('admin/', admin.site.urls), + path('', include('apps.jqr.urls')), ]