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:
@@ -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)
|
||||||
]
|
]
|
||||||
|
|||||||
Reference in New Issue
Block a user