djangoprojekt

This commit is contained in:
mekougoumfotsca56064 2019-11-05 15:17:32 +01:00
parent 1e7818c3b3
commit 661e24eff6
3 changed files with 3 additions and 1 deletions

View File

@ -37,6 +37,7 @@ INSTALLED_APPS = [
'django.contrib.sessions',
'django.contrib.messages',
'django.contrib.staticfiles',
'posts'
]
MIDDLEWARE = [

View File

@ -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('posts', include('posts.urls'))
]

View File