This commit is contained in:
j 2021-09-28 15:10:22 +02:00
commit 0508d8cd9a
53 changed files with 765 additions and 0 deletions

0
app/page/__init__.py Normal file
View file

2
app/page/admin.py Normal file
View file

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

6
app/page/apps.py Normal file
View file

@ -0,0 +1,6 @@
from django.apps import AppConfig
class PageConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'page'

View file

5
app/page/models.py Normal file
View file

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

3
app/page/tests.py Normal file
View file

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

3
app/page/views.py Normal file
View file

@ -0,0 +1,3 @@
from django.shortcuts import render
# Create your views here.