1
0
mirror of https://github.com/creyD/asiimov.git synced 2026-06-18 11:40:19 +02:00

Included core url config

This commit is contained in:
2020-01-13 14:42:19 +01:00
parent 114e3c0b6c
commit c50c772777

View File

@@ -14,8 +14,9 @@ Including another URLconf
2. Add a URL to urlpatterns: path('blog/', include('blog.urls')) 2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
""" """
from django.contrib import admin from django.contrib import admin
from django.urls import path from django.urls import path, include
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), path('', include('core.urls')),
path('admin/', admin.site.urls)
] ]