Search code examples
djangodjango-crispy-forms

django crispy forms - add field help text?


Looking through the crispy forms I cannot find if help text is supported. im trying to add some help text to the select multiple field as per the below

Field('site_types', Title="Site Types", size="15", help_text="Hold down cmd on MacOS or ctrl on windows to select multiple"),

is this supported or would I use some other attribute to achieve this?

Thanks


Solution

  • Here is the working example i used to display help text

    class myForm(forms.ModelForm):
         def __init__(self, *args, **kwargs):
            super(myForm, self).__init__(*args, **kwargs)
            self.fields['site_types'].help_text = "Please select bla bla bla"