summaryrefslogtreecommitdiff
path: root/docs/ref/forms/fields.txt
AgeCommit message (Collapse)Author
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
2015-09-23Removed versionadded/changed annotations for 1.8.Tim Graham
2015-09-23Refs #23151 -- Removed RegexField.error_message per deprecation timeline.Tim Graham
2015-09-23Added some more links in form field docsClaude Paroz
2015-09-16Fixed #25294 -- Allowed custom BoundFields on forms.Moritz Sichert
2015-07-17Fixed #16501 -- Added an allow_unicode parameter to SlugField.Edward Henderson
Thanks Flavio Curella and Berker Peksag for the initial patch.
2015-07-16Fixed #25078 -- Added support for disabled form fieldsClaude Paroz
Thanks Keryn Knight and Tim Graham for the reviews.
2015-07-01Fixed #4960 -- Added "strip" option to CharFieldCurtis
2015-06-24Renamed RemovedInDjangoXYWarnings for new roadmap.Tim Graham
Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more.
2015-06-16Fixed #24948 -- Fixed crash when uploading bitmap images in forms.ImageFieldAndriy Sokolovskiy
2015-06-11Used PEP 8 style indentation in forms docs.Nick Smith
2015-05-25Fixed typos in docs/ref/forms/fields.txtI am Clinton
2015-02-01Removed versionadded/changed notes for 1.7.Tim Graham
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-17Removed support for SplitDateTimeWidget with DateTimeField per deprecation ↵Tim Graham
timeline. refs #8898
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
A field for storing periods of time - modeled in Python by timedelta. It is stored in the native interval data type on PostgreSQL and as a bigint of microseconds on other backends. Also includes significant changes to the internals of time related maths in expressions, including the removal of DateModifierNode. Thanks to Tim and Josh in particular for reviews.
2014-12-02Fixed incorrect use of rst section heirarchy in form fields docs.Elena Williams
2014-11-04Fixed #13181 -- Added support for callable choices to forms.ChoiceFieldPeter Inglesby
Thanks vanschelven and expleo for the initial patch.
2014-09-16Fixed #19463 -- Added UUIDFieldMarc Tamlyn
Uses native support in postgres, and char(32) on other backends.
2014-08-27Fixed #23354 -- Documented that ModelChoiceField to_field_name should be a ↵Tim Graham
unique field. Thanks Keryn Knight for the suggestion.
2014-08-26Fixed #23250 -- Documented that ModelMultipleChoiceField queryset may be None.Tim Graham
2014-08-15Fixed #23162 -- Renamed forms.Field._has_changed() to has_changed().Gabriel Muñumel
2014-08-04Fixed #23169 - Misc docs fixes.areski
2014-08-03Fixed #23151 -- Deprecated RegexField.error_message.Tim Graham
Thanks Baptiste Mispelon for the suggestion.
2014-08-01Fixed #23103 -- Annotated ImageField file with image and content_type ↵Petras Zdanavičius
attributes. Thanks Jeremy Dunck for the suggestion and Nick Sanford for review.
2014-06-12Fixed #22813 -- Updated Pillow URL in documentationClaude Paroz
2014-05-13Fixed #22533 -- Added label_suffix parameter to form fields.Julen Ruiz Aizpuru
Fields can now receive the `label_suffix` attribute, which will override a form's `label_suffix`. This enhances the possibility to customize form's `label_suffix`, allowing to use such customizations while using shortcuts such as `{{ form.as_p }}`. Note that the field's own customization can be overridden at runtime by using the `label_prefix` parameter to `BoundField.label_tag()`. Refs #18134.