aboutsummaryrefslogtreecommitdiffstats
path: root/notice
Commit message (Collapse)AuthorAgeFilesLines
* Fixed a problem with OverwriteStorage.Weitian LI2014-06-241-1/+1
| | | | | | OverwriteStorage should be called as: FileField(..., storage=OverwriteStorage(),...) ^^
* Splited storage function from account.extraWeitian LI2014-06-241-2/+10
| | | | | | | | * Splited storage function from account.extra -> tools/storage.py - OverwriteStorage - file_cleanup * Updated account.models, archive.models * Added OverwriteStorage and file_cleanup function to notice.models
* Added app schedule, tools and archive/templatetags; updated settings.Weitian LI2014-06-242-26/+0
| | | | | | | | | * Added app 'schedule' to provides a more generic schedule page * Added fake app 'tools' to holds generic utilities * Moved notice/templatetags to tools/templatetags * Small change to archive.models.Archive display format * Added archive/templatetags * Small update to introduction page
* * changed block 'title' to 'pagetitle' for every page templateWeitian LI2014-05-181-3/+1
|
* * upaded display format of model Notice 'notice/models.py'Weitian LI2014-05-141-1/+1
| | | | | | * updated 'archive/urls.py', shortened the url, added a redirect * updated poster image: 'skaschool-poster.jpg' * updated the lecturer information of 'page/introduction.html'
* * added 'Markdown' to requirements.txtWeitian LI2014-04-291-1/+1
| | | | | * updated zh_CN messages * fixed a typo in 'my_markdown.py'
* * implemented 'my_markdown' templatetag (requires python-markdown)Weitian LI2014-04-294-2/+30
| | | | | * updated 'list_notice.html' .notice-content with my_markdown tag * added help_text for notice/models.py/Notice contents field
* * updated transcript help_text of account/models.pyWeitian LI2014-04-291-0/+4
| | | | | | * updated ValidationError message and used named string of account/extra.py * small changes to 'profile.html' and 'profile_update.html' * added class Meta to notice/models.py/NoticeAttachment
* * deleted 'Notice.publisher' fieldWeitian LI2014-04-252-3/+2
| | | | | * added 'blank=True' to 'NoticeAttachment.description' field * fixed attachment issue with 'list_notice.html' template
* * update display attachments in list_notice templateWeitian LI2014-04-232-6/+1
| | | | * removed 'get_attachment_list' method from Notice model
* * implemented 'ListNoticeView' based on ListViewWeitian LI2014-04-236-1/+186
| | | | | | * added list_notice template, css, urls * updated models and admin of app notice * updated navbar.html
* * added GenericRelation attachments field to 'Notice' modelWeitian LI2014-04-222-7/+8
| | | | * removed 'demo.urls' from urls.py
* * added 'MEDIA_ROOT' to settings.pyWeitian LI2014-04-212-2/+71
| | | | | * implemented 'Notice', 'NoticeCategory', 'NoticeAttachment' models * implemented 'NoticeAdmin' with 'NoticeAttachmentInline'
* disabled app south and removed migrationsWeitian LI2014-04-202-20/+0
|
* * updated django_skaschool/settings.pyWeitian LI2014-04-201-0/+4
| | | | | | o SITE_ID, LANGUAGE_CODE, TIME_ZONE o INSTALLED_APPS * updated top-level urls.py
* * implemented the index pageWeitian LI2014-04-202-0/+20
| | | | | | | | 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
* * updated settings.py, added settings_email.pyWeitian LI2014-04-185-0/+12
* created directories 'static' and 'templates' * added app 'account', 'notice' * added app 'demo'