summaryrefslogtreecommitdiff
path: root/docs/ref/forms
AgeCommit message (Collapse)Author
2021-12-22[4.0.x] Refs #31026 -- Updated TemplatesSetting docs to refer to forms.David Smith
Backport of 78f062f63e7dea09c219fd1310d43950817f4c78 from main
2021-12-02[4.0.x] Fixed #33334 -- Alphabetized form and model fields in reference docs.Shivam Durgbuns
Backport of d75c387f46c55459a2daf071e5463bad0ad7dcbd from main
2021-10-07[4.0.x] Refs #31026 -- Improved BoundField.label_tag() docs.David Smith
Backport of 9be36f8044c3bdfe5d1819d4b3b62bee64a039e3 from main
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.
2020-06-05Fixed #20347 -- Allowed customizing the maximum number of instantiated forms ↵David Smith
in formsets. Co-authored-by: ethurgood <ethurgood@gmail.com>
2020-06-03Preferred usage of among/while to amongst/whilst.David Smith
2020-05-08Fixed #12990, Refs #27694 -- Added JSONField model field.sage
Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-04-28Changed django.forms.ValidationError imports to ↵François Freitag
django.core.exceptions.ValidationError. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-04-24Corrected outputting BooleanField as HTML in forms docs.Tim Schilling
2020-04-10Refs #10427 -- Corrected BoundField.css_classes() signature in docs.David Smith
2020-04-10Fixed #13009 -- Added BoundField.widget_type property.David Smith
2020-04-09Mentioned non_field_errors in form validation docs.Shrikrishna Singh
2020-04-01Prevented (and corrected) single backtick usage in docs.Adam Johnson
2020-03-24Fixed #7664 -- Allowed customizing suffixes of MultiWidget.widgets' names.David Smith
2020-03-14Fixed #31362 -- Removed nonexistent choices attribute from ↵David Smith
MultipleHiddenInput's docs. Follow up to 65c13f9675d2ca7fc1c925e7182a2e35d07ff5fb.
2020-03-12Fixed #8760 -- Changed ModelMultipleChoiceField to use invalid_list as a ↵David Smith
error message key.
2020-01-08Fixed #31118 -- Made FileInput to avoid the required attribute when initial ↵Shubham singh
data exists.
2020-01-07Fixed #15982 -- Added DATE_INPUT_FORMATS to forms.DateTimeField default ↵Claude Paroz
input formats.
2020-01-06Fixed #11385 -- Made forms.DateTimeField accept ISO 8601 date inputs.Claude Paroz
Thanks José Padilla for the initial patch, and Carlton Gibson for the review.
2020-01-06Corrected notes about default date/datetime/time input formats.Claude Paroz
2020-01-02Fixed typo in ref/forms/widgets.txt.Mariusz Felisiak
2019-12-23Fixed #30998 -- Added ModelChoiceIteratorValue to pass the model instance to ↵Jon Dufresne
ChoiceWidget.create_option().
2019-12-23Refs #30998 -- Doc'd ModelChoiceField/ModelMultipleChoiceField.iterator ↵Jon Dufresne
attributes and ModelChoiceIterator.
2019-11-26Improved custom MultiWidget example in docs.Adam Johnson
2019-11-11Fixed #30252 -- Clarified need to reopen forms.fields.ImageField.image file ↵Hasan Ramezani
to access raw image data.
2019-10-25Refs #30908 -- Fixed the empty value of forms.FilePathField in docs.Mariusz Felisiak
2019-09-06Fixed #30573 -- Rephrased documentation to avoid words that minimise the ↵Tobias Kunze
involved difficulty. This patch does not remove all occurrences of the words in question. Rather, I went through all of the occurrences of the words listed below, and judged if they a) suggested the reader had some kind of knowledge/experience, and b) if they added anything of value (including tone of voice, etc). I left most of the words alone. I looked at the following words: - simply/simple - easy/easier/easiest - obvious - just - merely - straightforward - ridiculous Thanks to Carlton Gibson for guidance on how to approach this issue, and to Tim Bell for providing the idea. But the enormous lion's share of thanks go to Adam Johnson for his patient and helpful review.
2019-08-31Fixed #30738 -- Fixed typo in docs/ref/forms/widgets.txt.Daria Kolodzey
Thanks Emmanuel Cazenave for the report.