From c50c772777e56e440f4415e9b70580f165708d9e Mon Sep 17 00:00:00 2001 From: Conrad Date: Mon, 13 Jan 2020 14:42:19 +0100 Subject: [PATCH] Included core url config --- src/asiimov/urls.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/asiimov/urls.py b/src/asiimov/urls.py index 663b85e..82b67d9 100644 --- a/src/asiimov/urls.py +++ b/src/asiimov/urls.py @@ -14,8 +14,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('core.urls')), + path('admin/', admin.site.urls) ]