Browse Source

add .gitignore file

master
Kevin Holzschuh 4 years ago
parent
commit
03e37eec35
3 changed files with 17 additions and 2 deletions
  1. 3
    2
      news/news/urls.py
  2. 7
    0
      news/posts/urls.py
  3. 7
    0
      news/posts/views.py

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

@@ -14,9 +14,10 @@ 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('', include('posts.urls')),
path('posts/', include('posts.urls')),
path('admin/', admin.site.urls),
path("r'po[l]+s'")
]

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

@@ -0,0 +1,7 @@
from django.urls import path
from . import views

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

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

@@ -1,3 +1,10 @@
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.

Loading…
Cancel
Save