summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2017-02-01Refs #23919 -- Replaced kwargs.pop() with keyword-only arguments.Vytis Banaitis
2017-01-31Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template widget...Jon Dufresne
2017-01-27Refs #23919 -- Used DeclarativeFieldsMetaclass.__prepare__() for tracking for...Tim Graham
2017-01-26Removed unnecessary force_text() in BaseTemporalField.to_python().Tim Graham
2017-01-26Refs #23919, #27778 -- Removed obsolete mentions of unicode.Vytis Banaitis
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-23Replaced dict() usage with dict literals.Jon Dufresne
2017-01-23Replaced "not var is ..." with "is not" in attrs.html.Jon Dufresne
2017-01-23Fixed #27759 -- Prevented forms attrs.html template from rendering False attrs.Jon Dufresne
2017-01-23Fixed #27761 -- Fixed quote location in multiple_input.html forms templates.Jon Dufresne
2017-01-23Removed ChoiceWidget.render() as it duplicates parent implementation.Jon Dufresne
2017-01-22Refs #23919 -- Replaced six.reraise by raiseClaude Paroz
2017-01-21Refs #23919 -- Removed misc references to Python 2.Tim Graham
2017-01-21Refs #23919 -- Removed re.U and re.UNICODE (default on Python 3).Mariusz Felisiak
2017-01-20Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham
2017-01-20Refs #23919 -- Removed unneeded force_str callsClaude Paroz
2017-01-19Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette
2017-01-19Refs #23919 -- Removed __nonzero__() methods (for Python 2).Simon Charette
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed obsolete __ne__() methods.Aymeric Augustin
2017-01-18Refs #23919 -- Stopped using django.utils.lru_cache().Aymeric Augustin
2017-01-18Refs #23919 -- Removed most of remaining six usageClaude Paroz
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-18Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz
2017-01-18Refs #23919 -- Removed encoding preambles and future importsClaude Paroz
2017-01-17Refs #26533 -- Removed support for Widget._format_value() per deprecation tim...Tim Graham
2017-01-17Refs #24219 -- Removed django.forms.extras per deprecation timeline.Tim Graham
2017-01-13Fixed #27723 -- Set MultiWidget's subwidgets input type from attrs argument.Mariusz Felisiak
2017-01-10Fixed #27712 -- Reallowed Input widget's attrs argument to set the input type.Mariusz Felisiak
2017-01-06Refs #15667 -- Prevented newlines in attrs.html widget rendering.Dmitry
2016-12-28Fixed #27370 -- Prevented Select widget from using 'required' with a non-empt...Josef Rousek
2016-12-27Fixed #15667 -- Added template-based widget rendering.Preston Timmons
2016-12-27Fixed #27642 -- Made forms.utils.flatatt() omit 'None' values from attrs.Illia Volochii
2016-12-06Fixed #27416 -- Prevented ModelFormSet from creating objects for invalid PKs ...Hiroki Kiyohara
2016-12-02Fixed #27563 -- Moved "apply limit_choices_to" code from BaseModelForm to fie...Jon Dufresne
2016-12-01Fixed #27119 -- Cached BaseFormSet.management_form propertyClaude Paroz
2016-11-22Fixed #27250 -- Removed 'for ="..."' from CheckboxSelectMultiple's <label>.Diego Martín
2016-11-11Fixed #27431 -- Prevented disabled form fields from appearing as changed.Kenneth Veldman
2016-11-06Fixed typo in django/forms/widgets.py comment.Leila20
2016-11-06Fixed #27369 -- Prevented widgets from being shared between form field instan...Michal Petrucha
2016-09-30Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple.Tim Graham
2016-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, FileInput,...Tim Graham
2016-09-21Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 boole...Jon Dufresne
2016-09-16Fixed #27235 -- Removed some usage of mutable default arguments.Chris Lamb
2016-09-03Replaced smart_* by force_* calls whenever possibleClaude Paroz
2016-09-01Refs #27039 -- Fixed regression with field defaults in prefixed forms.Alex Hill
2016-08-24Fixed #27039 -- Fixed empty data fallback to model field default in model forms.Tim Graham
2016-08-18Fixed #27068 -- Unified form field initial data retrieval.Jon Dufresne
2016-08-12Made BoundField.initial use cached_property.Jon Dufresne
2016-08-12Fixed #27037 -- Prevented required attribute on ClearableFileInput when initi...Jon Dufresne