diff options
Diffstat (limited to 'notice')
-rw-r--r-- | notice/README.txt | 4 | ||||
-rw-r--r-- | notice/__init__.py | 0 | ||||
-rw-r--r-- | notice/admin.py | 3 | ||||
-rw-r--r-- | notice/models.py | 3 | ||||
-rw-r--r-- | notice/tests.py | 3 | ||||
-rw-r--r-- | notice/views.py | 3 |
6 files changed, 16 insertions, 0 deletions
diff --git a/notice/README.txt b/notice/README.txt new file mode 100644 index 0000000..0a44112 --- /dev/null +++ b/notice/README.txt @@ -0,0 +1,4 @@ +App notice + +This app deals with notice and pages of skaschool. + diff --git a/notice/__init__.py b/notice/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/notice/__init__.py diff --git a/notice/admin.py b/notice/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/notice/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/notice/models.py b/notice/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/notice/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/notice/tests.py b/notice/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/notice/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/notice/views.py b/notice/views.py new file mode 100644 index 0000000..91ea44a --- /dev/null +++ b/notice/views.py @@ -0,0 +1,3 @@ +from django.shortcuts import render + +# Create your views here. |