This commit is contained in:
Eugene Pankov
2021-06-12 13:05:35 +02:00
parent 04ddd11dfc
commit dc69574c07
27 changed files with 1162 additions and 81 deletions

View File

@@ -14,8 +14,10 @@ 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
from .app.urls import urlpatterns
urlpatterns = [
path('', include(urlpatterns)),
path('admin/', admin.site.urls),
]