Add help_text for CustomField description indicating Markdown support

This commit is contained in:
Jeremy Stretch 2023-09-20 14:04:13 -04:00
parent 4b352c941f
commit 0f63f4ad9a

View File

@ -76,7 +76,8 @@ class CustomFieldForm(BootstrapMixin, forms.ModelForm):
'type': _(
"The type of data stored in this field. For object/multi-object fields, select the related object "
"type below."
)
),
'description': _("This will be displayed as help text for the form field. Markdown is supported.")
}
def __init__(self, *args, **kwargs):