Browse Source

djangoprojekt

master
parent
commit
aff5d814d0

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


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

@@ -0,0 +1,3 @@
from django.contrib import admin

# Register your models here.

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

@@ -0,0 +1,5 @@
from django.apps import AppConfig


class PostsConfig(AppConfig):
name = 'posts'

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


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

@@ -0,0 +1,3 @@
from django.db import models

# Create your models here.

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

@@ -0,0 +1,3 @@
from django.test import TestCase

# Create your tests here.

+ 6
- 0
news1/posts/urls.py View File

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

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

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

@@ -0,0 +1,5 @@
from django.shortcuts import HttpResponse

# Create your views here.
def index(request):
return HttpResponse("Index-Seite der posts-Applikation")

Loading…
Cancel
Save