Browse Source

Posts app

master
Nadege 4 years ago
parent
commit
8928b1dacf

+ 2
- 1
news/news/urls.py View File

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 include, path


urlpatterns = [ urlpatterns = [
path('posts/', include('posts.urls')),
path('admin/', admin.site.urls), path('admin/', admin.site.urls),
] ]

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


+ 3
- 0
news/posts/admin.py View File

from django.contrib import admin

# Register your models here.

+ 5
- 0
news/posts/apps.py View File

from django.apps import AppConfig


class PostsConfig(AppConfig):
name = 'posts'

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


+ 3
- 0
news/posts/models.py View File

from django.db import models

# Create your models here.

+ 3
- 0
news/posts/tests.py View File

from django.test import TestCase

# Create your tests here.

+ 7
- 0
news/posts/urls.py View File

from django.urls import path

from . import views

urlpatterns = [
path('', views.index, name='index'),
]

+ 5
- 0
news/posts/views.py View File

from django.http import HttpResponse

# Create your views here.
def index(request):
return HttpResponse("Hello, world. You're at the posts index.")

Loading…
Cancel
Save