event timeline

This commit is contained in:
j 2021-11-12 16:49:35 +00:00
commit fc1a929428
53 changed files with 806 additions and 0 deletions

View file

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

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

6
app/page/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/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/page/tests.py Normal file
View file

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

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

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