File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -24,6 +24,13 @@ commonly used groups of widgets:
24
24
25
25
Password input: ``<input type='password' ...>``
26
26
27
+ Takes one optional argument:
28
+
29
+ .. attribute:: PasswordInput.render_value
30
+
31
+ Determines whether the widget will have a value filled in when the
32
+ form is re-displayed after a validation error (default is ``True``).
33
+
27
34
.. class:: HiddenInput
28
35
29
36
Hidden input: ``<input type='hidden' ...>``
@@ -88,6 +95,14 @@ commonly used groups of widgets:
88
95
89
96
Checkbox: ``<input type='checkbox' ...>``
90
97
98
+ Takes one optional argument:
99
+
100
+ .. attribute:: CheckboxInput.check_test
101
+
102
+ A callable that takes the value of the CheckBoxInput
103
+ and returns ``True`` if the checkbox should be checked for
104
+ that value.
105
+
91
106
.. class:: Select
92
107
93
108
Select widget: ``<select><option ...>...</select>``
You can’t perform that action at this time.
0 commit comments