summaryrefslogtreecommitdiff
path: root/docs/ref/forms/fields.txt
AgeCommit message (Collapse)Author
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.
2014-04-16Fixed #22378 -- Updated \d to [0-9]+ in urlpatterns of docs and tests.chriscauley
Thanks tomwys for the suggestion.
2014-03-24Removed versionadded/changed annotations for 1.6.Tim Graham
2014-03-22Fixed #22313 -- Removed 'u' prefixes from documentationClaude Paroz
2014-03-21Removed PIL compatability layer per deprecation timeline.Tim Graham
refs #19934.
2014-03-16Fixed #21860 -- Added to_field_name to ModelChoiceField docs.Anubhav Joshi
Thanks Keryn Knight for the suggestion.
2014-02-28Fixed doc typos.Tim Graham
2014-02-13Fixed #21951 -- Updated docs to use __str__ for Python 3Alasdair Nicol
Thanks Tim Graham for the report and recommendations
2014-01-11Fixed #8898 -- Obsoleted SplitDateTimeWidget usage with DateTimeFieldClaude Paroz
Thanks Tim Graham for the review.
2013-12-25Fixed #21669 -- Typo in docs/ref/forms/fields.txt.Tim Graham
Thanks alex_koval for the report.
2013-11-18Fixed #21397 -- Re-added flexibility to TypedChoiceField coercionClaude Paroz
Thanks Elec for the report and Simon Charette for the review.
2013-09-28Fixed #20439 -- Started deprecation of IPAddressFieldErik Romijn
2013-08-19Removed versionadded/changed annotations for 1.5Tim Graham
2013-08-06Fixed #15511 -- Allow optional fields on ``MultiValueField` subclasses.Tai Lee
The `MultiValueField` class gets a new ``require_all_fields`` argument that defaults to ``True``. If set to ``False``, individual fields can be made optional, and a new ``incomplete`` validation error will be raised if any required fields have empty values. The ``incomplete`` error message can be defined on a `MultiValueField` subclass or on each individual field. Skip duplicate errors.
2013-07-05Fixed #20224 -- Update docs examples which mention __unicode__Claude Paroz
Thanks Marc Tamlyn and Tim Graham for the review.
2013-05-19add missing imports to the examples in the 'Forms'leandrafinger
2013-05-17Fixed #5472 --Added OpenLayers-based widgets in contrib.gisClaude Paroz
Largely inspired from django-floppyforms. Designed to not depend on OpenLayers at code level.
2013-05-14Fixed #19934 - Use of Pillow is now preferred over PIL.Daniel Lindsley
This starts the deprecation period for PIL (support to end in 1.8).
2013-04-20Adapted uses of versionchanged/versionadded to the new form.Juan Catalano
Refs #20104.
2013-04-18Complemented documentation following commit be9ae693cClaude Paroz
Refs #17840. Thanks Carl Meyer for noticing the omission.
2013-02-25Fixed #19801 - Added brackets to input_formats.Tim Graham
Thanks leandron85@ for the suggestion.
2013-02-23Fixed #19686 -- Added HTML5 number input typeClaude Paroz
Thanks Simon Charette for his help on the patch. Refs #16630.
2013-01-28Added HTML5 url input typeClaude Paroz
Refs #16630.