Add schedule project
This commit is contained in:
parent
c76db31942
commit
a866e43007
0
schedule/__init__.py
Normal file
0
schedule/__init__.py
Normal file
3
schedule/admin.py
Normal file
3
schedule/admin.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.contrib import admin
|
||||
|
||||
# Register your models here.
|
5
schedule/apps.py
Normal file
5
schedule/apps.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from django.apps import AppConfig
|
||||
|
||||
|
||||
class ScheduleConfig(AppConfig):
|
||||
name = 'schedule'
|
0
schedule/migrations/__init__.py
Normal file
0
schedule/migrations/__init__.py
Normal file
3
schedule/models.py
Normal file
3
schedule/models.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.db import models
|
||||
|
||||
# Create your models here.
|
3
schedule/tests.py
Normal file
3
schedule/tests.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.test import TestCase
|
||||
|
||||
# Create your tests here.
|
3
schedule/views.py
Normal file
3
schedule/views.py
Normal file
|
@ -0,0 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
# Create your views here.
|
Loading…
Reference in a new issue