Display some free text in between Django Form fields

前端 未结 8 642
无人及你
无人及你 2021-02-04 09:00

I have a form like the following:

class MyForm(Form):

  #personal data
  firstname = CharField()
  lastname = CharField()

  #education data
  university = Char         


        
8条回答
  •  粉色の甜心
    2021-02-04 09:22

    There is a help_text field in forms you know.

    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}}

提交回复
热议问题