forms.Form.has_changed()
  • References/Python/Django/API/Forms/The Forms API

Form.has_changed() Use the has_changed() method on your Form when you need to check if the form data

2025-01-10 15:47:30
forms.Form.initial
  • References/Python/Django/API/Forms/The Forms API

Form.initial Use initial to declare the initial value of form fields at runtime. For example, you might want to

2025-01-10 15:47:30
forms.BoundField.field
  • References/Python/Django/API/Forms/The Forms API

BoundField.field The form

2025-01-10 15:47:30
forms.BoundField.help_text
  • References/Python/Django/API/Forms/The Forms API

BoundField.help_text The

2025-01-10 15:47:30
forms.BoundField.data
  • References/Python/Django/API/Forms/The Forms API

BoundField.data This property returns the data for this BoundField extracted by the widget’s

2025-01-10 15:47:30
forms.Form.is_bound
  • References/Python/Django/API/Forms/The Forms API

Form.is_bound If you need to distinguish between bound and unbound form instances at runtime, check the value of the form’s

2025-01-10 15:47:30
forms.BoundField.label
  • References/Python/Django/API/Forms/The Forms API

BoundField.label The

2025-01-10 15:47:30
forms.BoundField.form
  • References/Python/Django/API/Forms/The Forms API

BoundField.form The Form instance this BoundField is bound to.

2025-01-10 15:47:30
forms.Form.has_error()
  • References/Python/Django/API/Forms/The Forms API

Form.has_error(field, code=None) This method returns a boolean designating whether a field has an error with a specific error

2025-01-10 15:47:30
forms.BoundField.name
  • References/Python/Django/API/Forms/The Forms API

BoundField.name The name of this field in the form: >>>

2025-01-10 15:47:30