Add schedule project

This commit is contained in:
Reynir Björnsson 2020-04-09 14:11:12 +02:00
parent c76db31942
commit a866e43007
7 changed files with 17 additions and 0 deletions

0
schedule/__init__.py Normal file
View File

3
schedule/admin.py Normal file
View File

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

5
schedule/apps.py Normal file
View File

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

View File

3
schedule/models.py Normal file
View File

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

3
schedule/tests.py Normal file
View File

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

3
schedule/views.py Normal file
View File

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