Skip to content

Commit

Permalink
fix(frontend): add help text to story form
Browse files Browse the repository at this point in the history
Closes #2364
  • Loading branch information
JacobCoffee committed Sep 19, 2024
1 parent 5fdcbb2 commit 3d06500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion successstories/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class Story(NameSlugModel, ContentManageable):
author = models.CharField(max_length=500, help_text='Author of the content')
author_email = models.EmailField(max_length=100, blank=True, null=True)
pull_quote = models.TextField()
content = MarkupField(default_markup_type=DEFAULT_MARKUP_TYPE)
content = MarkupField(default_markup_type=DEFAULT_MARKUP_TYPE, help_text="Note: Submissions in Markdown are strongly preferred and can be processed faster.")
is_published = models.BooleanField(default=False, db_index=True)
featured = models.BooleanField(default=False, help_text="Set to use story in the supernav")
image = models.ImageField(upload_to='successstories', blank=True, null=True)
Expand Down

0 comments on commit 3d06500

Please sign in to comment.