summaryrefslogtreecommitdiff
path: root/docs/ref/forms/fields.txt
AgeCommit message (Collapse)Author
2020-10-17[3.1.x] Fixed #32110 -- Doc'd and tested enumerations for ChoiceField.choices.Claude Paroz
Backport of 7f85498eef1d8fcc52e4fb70df8041f5452d405a from master
2020-10-08[3.1.x] Fixed #23681, Fixed #27445 -- Doc'd setting choices for ↵Jacob Walls
NullBooleanField widgets. Thanks to David Smith for investigation and review. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Backport of d976c254fc76e5f04d81dfd9d142c58e933c9c92 from master
2020-09-25[3.1.x] Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith
Backport of 91669cc566918fde4fe98f867cf4c406f64504e6 from master
2020-09-25[3.1.x] Fixed empty values of forms.JSONField and forms.UUIDField in docs.David Smith
Backport of e6d77e6515b297519a565b0e3b85f34c6598bb71 from master
2020-09-25[3.1.x] Fixed typo and indentation in docs/ref/forms/fields.txt.Mariusz Felisiak
Backport of 10a289745f8ecb558f5c22d734315c96d8d4b96e from master
2020-09-21[3.1.x] Refs #32013 -- Added backward incompatibility note about ↵Mariusz Felisiak
ModelChoiceIterator changes. Backport of ba6b32e5efc4c813ba4432777b3b1743d4205d14 from master
2020-09-02[3.1.x] Refs #11390 -- Clarified dual-calling of ChoiceField.choices callable.Carlton Gibson
Backport of 0bf627f0b2f868cdcc53ac12cc7f390901d4b83d from master
2020-08-21[3.1.x] Fixed #31906 -- Fixed typo in docs/ref/forms/fields.txt.Ninad Kulkarni
Backport of 927bd888ddea8bf37aec5515a7367fe8aeb3d1b4 from master
2020-07-13[3.1.x] Fixed #21528 -- Added note about filtering form field's queryset ↵Caio Ariede
based on instance to admin docs. Backport of d38c34119e91a533c797098f150abe99b5ee2fd8 from master
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-03-12Fixed #8760 -- Changed ModelMultipleChoiceField to use invalid_list as a ↵David Smith
error message key.
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
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-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-05-17Changed docs to link to Python's description of iterable.Jon Dufresne
2018-09-04Corrected forms.TimeField's default widget in docs.flh
2018-08-16Fixed #29646 -- Doc'd the validators that each model and form field uses.Jeff
2018-01-21Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne
2017-10-25Fixed #28474 -- Made DurationField raise ValidationError for inputs that ↵Srinivas Reddy Thatiparthy
raised OverflowError.
2017-09-22Removed versionadded/changed annotations for 1.11.Tim Graham
2017-09-02Removed stray versionadded/changed annotations for 1.10.Tim Graham
2017-06-03Fixed #28192 -- Required passing optional form field args as keyword args.Claude Paroz
2017-06-03Fixed typo in docs/ref/forms/fields.txt.Tim Graham
2017-06-03Refs #28192 -- Fixed documentation of ChoiceField choices requirementClaude Paroz
Thanks Tim Graham for noticing the issue.
2017-05-29Removed incorrect "required" attribute in docs/ref/forms/fields.txt.Tim Graham
2017-05-05Fixed typo in docs/ref/forms/fields.txt.Christoph Schindler
2017-01-26Fixed #27501 -- Documented lazy evaluation of ModelChoiceField.queryset.chillaranand
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super() in docs.chillaranand
2017-01-19Refs #23919 -- Removed docs references to long integers.Tim Graham
2017-01-18Refs #23919 -- Removed Python 2 notes in docs.Tim Graham
2017-01-14Fixed #27387 -- Doc'd required HTML attribute in Field.required docs.Claude Paroz
2016-07-08Fixed #26837 -- Documented ModelMultipleChoiceField.to_field_nameSean Marlow
2016-06-13Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne
Previously, empty values were saved as strings.
2016-06-06Added some links to the TypedChoiceField docs.Jon Dufresne
2016-06-03Fixed #26021 -- Applied hanging indentation to docs.Ed Henderson
2016-05-20Removed versionadded/changed annotations for 1.9.Tim Graham
2016-04-28Fixed #26554 -- Updated docs URLs to readthedocs.ioTim Graham
2016-04-21Fixed #22383 -- Added support for HTML5 required attribute on required form ↵Jon Dufresne
fields.
2016-04-03Correct number of extra arguments in docs for FilePathField.bellisk
2016-01-22Fixed #26020 -- Normalized header stylings in docs.Elif T. Kus
2015-12-01Fixed #25778 -- Updated docs links to use https when available.Jon Dufresne
2015-11-24Documented that forms.Field.help_text isn't HTML-escaped.Tim Graham
2015-11-16Fixed #25755 -- Unified spelling of "website".Agnieszka Lasyk