Created app organizer

This commit is contained in:
Jason Zhu 2020-10-18 23:03:25 +11:00
parent 9ae517bb43
commit cf9df791ea
7 changed files with 17 additions and 0 deletions

View File

3
src/organizer/admin.py Normal file
View File

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

5
src/organizer/apps.py Normal file
View File

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

View File

3
src/organizer/models.py Normal file
View File

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

3
src/organizer/tests.py Normal file
View File

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

3
src/organizer/views.py Normal file
View File

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