djangoprojekt

This commit is contained in:
Serge Beaujard Pouani Deumassi 2019-11-04 17:48:40 +01:00
parent de8f10e8dd
commit aff5d814d0
8 changed files with 25 additions and 0 deletions

0
news1/posts/__init__.py Normal file
View File

3
news1/posts/admin.py Normal file
View File

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

5
news1/posts/apps.py Normal file
View File

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

View File

3
news1/posts/models.py Normal file
View File

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

3
news1/posts/tests.py Normal file
View File

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

6
news1/posts/urls.py Normal file
View File

@ -0,0 +1,6 @@
from django.urls import path
from.import views
urlpatterns =[
path('', views.index, name='index'),
]

5
news1/posts/views.py Normal file
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")