summaryrefslogtreecommitdiff
path: root/docs/ref/forms
AgeCommit message (Collapse)Author
2023-07-18Added reference to TypedChoiceField in ChoiceField docs.David Sanders
2023-07-03[4.2.x] Fixed CVE-2023-36053 -- Prevented potential ReDoS in EmailValidator ↵Mariusz Felisiak
and URLValidator. Thanks Seokchan Yoon for reports.
2023-04-03[4.2.x] Fixed #34431 -- Improved Date/DateTimeField/TimeField.input_formats ↵Edison Wang
docs. Backport of cbcc1240e912cfc47cb6ea0c4fe6b4a48f36f7e2 from main
2023-03-24[4.2.x] Fixed typos in docs/ref/forms/renderers.txt.Mariusz Felisiak
Backport of 659f6b5bc5d68661a071f0cd13b8dab678067023 from main
2023-03-01[4.2.x] Fixed #34140 -- Reformatted code blocks in docs with blacken-docs.django-bot
2023-02-28[4.2.x] Refs #34140 -- Corrected rst code-block and various formatting ↵Joseph Victor Zammit
issues in docs. Backport of ba755ca13123d2691a0926ddb64e5d0a2906a880 from main
2023-02-10[4.2.x] Refs #34140 -- Applied rst code-block to non-Python examples.Carlton Gibson
Thanks to J.V. Zammit, Paolo Melchiorre, and Mariusz Felisiak for reviews. Backport of 534ac4829764f317cf2fbc4a18354fcc998c1425 from main.
2022-12-07Refs #32339 -- Updated Form API docs to prefer as_div() output style.David Smith
2022-08-09Fixed #33842 -- Used :source: role for links to repo files on GitHub.Ramil Yanbulatov
2022-08-06Fixed typo in docs/ref/forms/renderers.txt.Mariusz Felisiak
Thanks Josh for the report.
2022-06-03Fixed documentation of Widget.id_for_label() empty return value.Swann
2022-05-17Removed versionadded/changed annotations for 4.0.Carlton Gibson
2022-05-17Refs #32339 -- Deprecated default.html form template.David Smith
Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2022-05-12Fixed #32559 -- Added 'step_size’ to numeric form fields.Kapil Bansal
Co-authored-by: Jacob Rief <jacob.rief@uibk.ac.at>
2022-05-05Fixed #32339 -- Added div.html form template.David Smith
2022-05-04Refs #32339 -- Restructured outputting HTML form docs.Carlton Gibson
In the topic doc, promoted the Reusable form templates section. In the reference, re-grouped and promoted the default __str__() rendering path, and then gathered the various as_*() helpers subsequently. Thanks to David Smith for review.
2022-05-03Fixed #33658 -- Doc'd ModelChoiceField.blank attribute.Alokik Vijay
Thanks Mariusz Felisiak for reviewing.
2022-04-27Refs #32339 -- Allowed renderer to specify default form and formset templates.Carlton Gibson
Co-authored-by: David Smith <smithdc@gmail.com>
2022-04-27Refs #32339 -- Added base form renderer to docs.Carlton Gibson
2022-03-30Refs #32339 -- Added use_fieldset to Widget.David
2022-01-27Fixed #26142 -- Allowed model formsets to prevent new object creation.vgolubev
Thanks Jacob Walls, David Smith, and Mariusz Felisiak for reviews. Co-authored-by: parth <parthvin@gmail.com>
2021-12-28Avoided counting attributes and methods in docs.Mariusz Felisiak
2021-12-22Refs #31026 -- Updated TemplatesSetting docs to refer to forms.David Smith
2021-12-09Refs #32338 -- Added Boundfield.legend_tag().David Smith
2021-12-02Fixed #33334 -- Alphabetized form and model fields in reference docs.Shivam Durgbuns
2021-10-06Refs #31026 -- Improved BoundField.label_tag() docs.David Smith
2021-09-20Removed versionadded/changed annotations for 3.2.Mariusz Felisiak
2021-09-20Fixed #31026 -- Switched form rendering to template engine.David Smith
Thanks Carlton Gibson, Keryn Knight, Mariusz Felisiak, and Nick Pope for reviews. Co-authored-by: Johannes Hoppe <info@johanneshoppe.com>
2021-08-27Refs #32338 -- Made RadioSelect/CheckboxSelectMultiple render in <div> tags.David Smith
This improves accessibility for screen reader users.
2021-08-17Fixed #32964 -- Corrected 'setup'/'set up' usage in docs.Andrew Northall
2021-07-29Fixed 32956 -- Lowercased spelling of "web" and "web framework" where ↵David Smith
appropriate.
2021-07-27Fixed #32933 -- Documented BoundField.initial as preferred over ↵Chris Jerdonek
Form.get_initial_for_field().
2021-06-04Refs #32338 -- Improved accessibility of RadioSelect examples in docs.David Smith
Co-authored-by: Thibaud Colas <thibaudcolas@gmail.com>
2021-02-01Fixed typo in docs/ref/forms/widgets.txt.Brad Solomon
2021-01-26Fixed #32347 -- Made ModelChoiceField include the value in ValidationError ↵Jerin Peter George
for invalid_choice.
2021-01-14Refs #8760 -- Removed "list" message for ModelMultipleChoiceField per ↵Mariusz Felisiak
deprecation timeline.
2021-01-14Removed versionadded/changed annotations for 3.1.Mariusz Felisiak
2020-12-15Fixed typo in docs/ref/forms/widgets.txt.Mariusz Felisiak
Thanks rgs258 for the report.
2020-12-15Added backticks to code literals in various docs.Jon Dufresne
2020-10-17Fixed #32110 -- Doc'd and tested enumerations for ChoiceField.choices.Claude Paroz
2020-10-08Fixed #23681, Fixed #27445 -- Doc'd setting choices for NullBooleanField ↵Jacob Walls
widgets. Thanks to David Smith for investigation and review. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es>
2020-09-25Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith
2020-09-25Fixed empty values of forms.JSONField and forms.UUIDField in docs.David Smith
2020-09-25Fixed typo and indentation in docs/ref/forms/fields.txt.Mariusz Felisiak
2020-09-21Refs #32013 -- Added backward incompatibility note about ModelChoiceIterator ↵Mariusz Felisiak
changes.
2020-09-02Refs #11390 -- Clarified dual-calling of ChoiceField.choices callable.Carlton Gibson
2020-08-21Fixed #31906 -- Fixed typo in docs/ref/forms/fields.txt.Ninad Kulkarni
2020-08-18Refs #17642 -- Doc'd min_num and validate_min arguments in ↵Mariusz Felisiak
modelformset_factory() docs. Changed arguments ordering to match the modelformset_factory() signature.
2020-07-13Fixed #21528 -- Added note about filtering form field's queryset based on ↵Caio Ariede
instance to admin docs.
2020-06-24Fixed #9061 -- Allowed FormSets to disable deleting extra forms.David Smith
Thanks to Dan Ward for the initial patch.