aboutsummaryrefslogtreecommitdiffstats
path: root/notice/models.py
Commit message (Collapse)AuthorAgeFilesLines
* * 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'
* * implemented 'my_markdown' templatetag (requires python-markdown)Weitian LI2014-04-291-1/+2
| | | | | * 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-251-2/+1
| | | | | * added 'blank=True' to 'NoticeAttachment.description' field * fixed attachment issue with 'list_notice.html' template
* * update display attachments in list_notice templateWeitian LI2014-04-231-5/+0
| | | | * removed 'get_attachment_list' method from Notice model
* * implemented 'ListNoticeView' based on ListViewWeitian LI2014-04-231-0/+11
| | | | | | * 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-221-5/+6
| | | | * removed 'demo.urls' from urls.py
* * added 'MEDIA_ROOT' to settings.pyWeitian LI2014-04-211-1/+51
| | | | | * implemented 'Notice', 'NoticeCategory', 'NoticeAttachment' models * implemented 'NoticeAdmin' with 'NoticeAttachmentInline'
* * updated settings.py, added settings_email.pyWeitian LI2014-04-181-0/+3
* created directories 'static' and 'templates' * added app 'account', 'notice' * added app 'demo'