summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2017-09-05[1.11.x] Fixed #28555 -- Made CharField convert whitespace-only values to the...Josh Schneier
2017-08-31[1.11.x] Fixed #27998, #28543 -- Restored logging of ManyToManyField changes ...Tim Graham
2017-08-29[1.11.x] Fixed #28530 -- Prevented SelectDateWidget from localizing years in ...caleb logan
2017-07-19[1.11.x] Fixed #28414 -- Fixed ClearableFileInput rendering as a subwidget of...Roman Selivanov
2017-07-14[1.11.x] Fixed #28387 -- Fixed has_changed() for disabled form fields that su...Srinivas Reddy Thatiparthy
2017-07-06[1.11.x] Fixed #28355 -- Fixed widget rendering of non-ASCII date/time format...Tim Graham
2017-06-30[1.11.x] Fixed #28345 -- Applied limit_choices_to during ModelForm.__init__().Jon Dufresne
2017-06-17[1.11.x] Fixed #28176 -- Restored the uncasted option value in ChoiceWidget t...Tim Graham
2017-06-17[1.11.x] Fixed #28303 -- Prevented localization of attribute values in the DT...Tim Graham
2017-06-02[1.11.x] Fixed #28265 -- Prevented renderer warning on Widget.render() with *...Jon Dufresne
2017-06-01[1.11.x] Fixed #28242 -- Moved ImageField file extension validation to the fo...Manatsawin Hanmongkolchai
2017-05-03[1.11.x] Fixed #28159 -- Fixed BaseInlineFormSet._construct_form() crash when...Alexander Kavanaugh
2017-05-03[1.11.x] Fixed #28157 -- Fixed choice ordering in form fields with grouped an...Tim Graham
2017-04-28[1.11.x] Fixed #28130 -- Fixed formset min_num validation with initial, uncha...Tim Graham
2017-04-21[1.11.x] Fixed #28075 -- Prevented ChoiceWidget from localizing option values.Jon Dufresne
2017-04-20[1.11.x] Fixed #28059 -- Restored class attribute in <ul> of widgets that use...Tim Graham
2017-04-17[1.11.x] Fixed #28058 -- Restored empty BoundFields evaluating to True.Tim Graham
2017-04-01[1.11.x] Refs #27866 -- Adapted backport for Python 2 compatibilityClaude Paroz
2017-04-01[1.11.x] Fixed #27866 -- Made ChoiceWidget.format_value() return a listClaude Paroz
2017-03-31[1.11.x] Fixed #27993 -- Fixed model form default fallback for SelectMultiple.heathervm
2017-03-22[1.11.x] Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.James Beith
2017-03-21[1.11.x] Refs #27919 -- Changed Widget.get_context() attrs kwarg to an arg.Tim Graham
2017-03-21[1.11.x] Refs #27919 -- Passed ChoiceWidget.create_option() kwargs as expected.Tim Graham
2017-03-15[1.11.x] Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't ...Tim Graham
2017-03-14[1.11.x] Fixed #27920 -- Restored empty RadioSelect choice producing value=""Claude Paroz
2017-02-20[1.11.x] Refs #23151 -- Removed RegexField's unused error_message parameter.Tim Graham
2017-02-20[1.11.x] Fixed #27850 -- Made RelatedFieldWidgetWrapper call render() of the ...Collin Anderson
2017-02-06[1.11.x] Fixed #27805 -- Fixed ClearableFileInput's "Clear" checkbox on model...Tim Graham
2017-01-31[1.11.x] Fixed #27758 -- Reallowed AdvancedModelIterator pattern after templa...Jon Dufresne
2017-01-23[1.11.x] Replaced dict() usage with dict literals.Jon Dufresne
2017-01-23[1.11.x] Replaced "not var is ..." with "is not" in attrs.html.Jon Dufresne
2017-01-23[1.11.x] Fixed #27759 -- Prevented forms attrs.html template from rendering F...Jon Dufresne
2017-01-23[1.11.x] Fixed #27761 -- Fixed quote location in multiple_input.html forms te...Jon Dufresne
2017-01-23[1.11.x] Removed ChoiceWidget.render() as it duplicates parent implementation.Jon Dufresne
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