aboutsummaryrefslogtreecommitdiffstats
path: root/notice/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'notice/models.py')
-rw-r--r--notice/models.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/notice/models.py b/notice/models.py
index e2b9533..63b17b2 100644
--- a/notice/models.py
+++ b/notice/models.py
@@ -15,7 +15,8 @@ class Notice(models.Model):
pubtime = models.DateTimeField(_("Publish time"), auto_now_add=True)
category = models.ForeignKey('NoticeCategory', verbose_name=_("Category"))
is_important = models.BooleanField(_("Is important"), default=False)
- contents = models.TextField(_("Contents"))
+ contents = models.TextField(_("Contents"),
+ help_text=_("Markdown syntax supported"))
# NoticeAttachment to deal with attachments
attachments = generic.GenericRelation('NoticeAttachment')