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')), ]