Skip to content

Commit 3fa351b

Browse files
authored
fix(frontend): add help text to story form (#2594)
* fix(frontend): add help text to story form Closes #2364 * chore: source migration * fix: use meta class overrides instead * feat: linkify
1 parent fa18e78 commit 3fa351b

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

successstories/forms.py

+4
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ class Meta:
2424
labels = {
2525
'name': 'Story name',
2626
}
27+
help_texts = {
28+
"content": "Note: Submissions in <a href='https://www.markdownguide.org/basic-syntax/'>Markdown</a> "
29+
"are strongly preferred and can be processed faster.",
30+
}
2731

2832
def clean_name(self):
2933
name = self.cleaned_data.get('name')

0 commit comments

Comments
 (0)