Fertige erste Django-Webapplikation: selbst generierter Text wird bei Aufruf von

http://127.0.0.1:8000/posts/

angezeigt!
This commit is contained in:
Jonka Winkle 2018-10-29 16:50:31 +01:00
parent a4c7ce4b71
commit 99e8c4c710
9 changed files with 34 additions and 2 deletions

View File

@ -13,9 +13,13 @@ Including another URLconf
1. Import the include() function: from django.urls import include, path 1. Import the include() function: from django.urls import include, path
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.urls import path from django.urls import path
from django.conf.urls import include, url
from django.contrib import admin
urlpatterns = [ urlpatterns = [
path('admin/', admin.site.urls), url(r'^admin/', admin.site.urls),
url(r'^posts/', include('posts.urls')),
] ]

View File

View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

View File

@ -0,0 +1,5 @@
from django.apps import AppConfig
class PostsConfig(AppConfig):
name = 'posts'

View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

View File

@ -0,0 +1,7 @@
from django.conf.urls import include, url
from . import views
urlpatterns = [
url(r'^$', views.index, name="index"),
]

View File

@ -0,0 +1,7 @@
from django.shortcuts import render
from django.http import HttpResponse
# Create your views here.
def index(request):
return HttpResponse("Praktikum -> done :-)")