{% extends 'doc/en/base.html' %} {% load static %} {% block content %} {% verbatim %}
class BlitzModelForm(forms.ModelForm):
mutate_inputs = True
mutate_text_area = True
mutate_select = True
mutate_select_multiple = True
mutate_date_input = True
number_input_for_date = True
class BlitzForm(forms.Form):
mutate_inputs = True
mutate_text_area = True
mutate_select = True
mutate_select_multiple = True
mutate_date_input = True
number_input_for_date = True
Specifies whether the Input of the form will be modified.
Specifies whether the TextArea of the form will be modified.
Specifies whether the simple selection Selects of the form will be modified.
Specifies whether the multiple choices Selects of the form will be modified.
Specifies whether the DateInput of the form will be modified.
Specifies if NumberInput or SelectDateWidget is used to modify the DateInputs.