Skip to content

Commit 3d06500

Browse files
committed
fix(frontend): add help text to story form
Closes #2364
1 parent 5fdcbb2 commit 3d06500

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

successstories/models.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ class Story(NameSlugModel, ContentManageable):
5353
author = models.CharField(max_length=500, help_text='Author of the content')
5454
author_email = models.EmailField(max_length=100, blank=True, null=True)
5555
pull_quote = models.TextField()
56-
content = MarkupField(default_markup_type=DEFAULT_MARKUP_TYPE)
56+
content = MarkupField(default_markup_type=DEFAULT_MARKUP_TYPE, help_text="Note: Submissions in Markdown are strongly preferred and can be processed faster.")
5757
is_published = models.BooleanField(default=False, db_index=True)
5858
featured = models.BooleanField(default=False, help_text="Set to use story in the supernav")
5959
image = models.ImageField(upload_to='successstories', blank=True, null=True)

0 commit comments

Comments
 (0)