More templating

This commit is contained in:
2021-02-14 13:18:31 +00:00
parent 56a8b7afaa
commit c55577e04e
12 changed files with 120 additions and 1 deletions

0
maintenance/__init__.py Normal file
View File

3
maintenance/admin.py Normal file
View File

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

5
maintenance/apps.py Normal file
View File

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

View File

3
maintenance/models.py Normal file
View File

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

3
maintenance/tests.py Normal file
View File

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

3
maintenance/views.py Normal file
View File

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