Browse Source

djangoprojekt

master
mekougoumfotsca56064 4 years ago
parent
commit
661e24eff6
3 changed files with 3 additions and 1 deletions
  1. 1
    0
      news/news/settings.py
  2. 2
    1
      news/news/urls.py
  3. 0
    0
      news/posts/migrations/__init__.py

+ 1
- 0
news/news/settings.py View File

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

MIDDLEWARE = [

+ 2
- 1
news/news/urls.py 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'))
]

+ 0
- 0
news/posts/migrations/__init__.py View File


Loading…
Cancel
Save