diff options
author | Weitian LI <liweitianux@gmail.com> | 2014-04-20 16:17:47 +0800 |
---|---|---|
committer | Weitian LI <liweitianux@gmail.com> | 2014-04-20 16:17:47 +0800 |
commit | d477d14d624bea299a62199799607155d43a4226 (patch) | |
tree | c82c424f77993b7138f01249c99cd3309612d012 /notice | |
parent | 0005d0926d15d9034d8cb47da3861e5ab6dd02f1 (diff) | |
download | django-skaschool-d477d14d624bea299a62199799607155d43a4226.tar.bz2 |
* implemented the index page
o base.html, navbar.html, favicon.html, index.html
o added static files related to index page
* performed south migrations
* implemented registration templates
* implemented regiration views and pages
Diffstat (limited to 'notice')
-rw-r--r-- | notice/migrations/0001_initial.py | 20 | ||||
-rw-r--r-- | notice/migrations/__init__.py | 0 |
2 files changed, 20 insertions, 0 deletions
diff --git a/notice/migrations/0001_initial.py b/notice/migrations/0001_initial.py new file mode 100644 index 0000000..4243e11 --- /dev/null +++ b/notice/migrations/0001_initial.py @@ -0,0 +1,20 @@ +# -*- coding: utf-8 -*- +from south.utils import datetime_utils as datetime +from south.db import db +from south.v2 import SchemaMigration +from django.db import models + + +class Migration(SchemaMigration): + + def forwards(self, orm): + pass + + def backwards(self, orm): + pass + + models = { + + } + + complete_apps = ['notice']
\ No newline at end of file diff --git a/notice/migrations/__init__.py b/notice/migrations/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/notice/migrations/__init__.py |