I have a form like the following:
class MyForm(Form): #personal data firstname = CharField() lastname = CharField() #education data university = Char
There is a help_text field in forms you know.
help_text
in forms.py:
myField = forms.myFieldType(help_text="Helping friendly text to put in your form", otherStuff=otherStuff)
in forms.html:
{{form.myField.help_text}}