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('', include('posts.urls')), | |||||
path('posts/', include('posts.urls')), | |||||
path('admin/', admin.site.urls), | path('admin/', admin.site.urls), | ||||
path("r'po[l]+s'") | |||||
] | ] |
from django.urls import path | |||||
from . import views | |||||
urlpatterns = [ | |||||
path('', views.index, name='index'), | |||||
path('posts/', views.posts, name='posts') | |||||
] |
from django.shortcuts import render | from django.shortcuts import render | ||||
from django.http import HttpResponse | |||||
def index(request): | |||||
return HttpResponse("Startseite") | |||||
def posts(request): | |||||
return HttpResponse("Posts") | |||||
# Create your views here. | # Create your views here. |