summaryrefslogtreecommitdiff
path: root/tests/model_forms
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed #29038 -- Removed closing slash from HTML void tags.Jon Dufresne2018-01-211-58/+58
* Fixed #29041 -- Changed SelectMultiple's multiple attribute to HTML5 boolean ...Jon Dufresne2018-01-201-8/+8
* Fixed #28543 -- Prevented ManyToManyField.value_from_object() from being lazy.Tim Graham2017-08-311-0/+15
* Used assertRaisesMessage() to test Django's error messages.Mads Jensen2017-07-291-9/+17
* Fixed #28387 -- Fixed has_changed() for disabled form fields that subclass it.Srinivas Reddy Thatiparthy2017-07-141-0/+8
* Fixed #28345 -- Applied limit_choices_to during ModelForm.__init__().Jon Dufresne2017-06-301-1/+11
* Refs #23919 -- Replaced stray super(ClassName, self) with super().Tom2017-06-101-1/+1
* Fixed #28242 -- Moved ImageField file extension validation to the form field.Manatsawin Hanmongkolchai2017-06-012-1/+30
* Fixed #28249 -- Removed unnecessary dict.keys() calls.Jon Dufresne2017-05-271-9/+9
* Fixed #27993 -- Fixed model form default fallback for SelectMultiple.heathervm2017-03-311-0/+16
* Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.James Beith2017-03-221-0/+11
* Fixed nondeterministic ordering test failure in model_forms.Mariusz Felisiak2017-03-161-1/+1
* Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't share a q...Tim Graham2017-03-151-0/+9
* Removed obsolete references to form_for_instance().Tim Graham2017-02-282-10/+0
* Refs #23919 -- Used yield from.Vytis Banaitis2017-02-231-2/+1
* Fixed #27758 -- Reallowed AdvancedModelIterator pattern after template widget...Jon Dufresne2017-01-311-0/+37
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-252-9/+9
* Refs #23919 -- Removed django.utils._os.upath()/npath()/abspathu() usage.Tim Graham2017-01-202-6/+4
* Refs #23919 -- Removed str() conversion of type and method __name__.Simon Charette2017-01-191-6/+6
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-1/+1
* Refs #23919 -- Removed most of remaining six usageClaude Paroz2017-01-182-3/+1
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-182-19/+18
* Refs #23919 -- Removed python_2_unicode_compatible decorator usageClaude Paroz2017-01-181-17/+0
* Refs #23919 -- Removed encoding preambles and future importsClaude Paroz2017-01-183-6/+0
* Refs #26154 -- Removed deprecated CommaSeparatedIntegerField.Tim Graham2017-01-172-43/+6
* Fixed #27370 -- Prevented Select widget from using 'required' with a non-empt...Josef Rousek2016-12-281-2/+2
* Fixed #15667 -- Added template-based widget rendering.Preston Timmons2016-12-271-8/+1
* Updated LimitChoicesToTests to use setUpTestData and cosmetic edits.Tim Graham2016-12-021-13/+12
* Fixed #27563 -- Moved "apply limit_choices_to" code from BaseModelForm to fie...Jon Dufresne2016-12-021-0/+4
* Refs #27392 -- Removed "Tests that", "Ensures that", etc. from test docstrings.za2016-11-101-9/+8
* Fixed #27369 -- Prevented widgets from being shared between form field instan...Michal Petrucha2016-11-061-1/+1
* Fixed #27148 -- Fixed ModelMultipleChoiceField crash with invalid UUID.Tim Graham2016-10-311-0/+6
* Refs #27186 -- Fixed model form default fallback for CheckboxSelectMultiple.Tim Graham2016-09-301-1/+17
* Fixed #27186 -- Fixed model form default fallback for MultiWidget, FileInput,...Tim Graham2016-09-222-0/+54
* Fixed #27256 -- Changed Select widget's selected attribute to use HTML5 boole...Jon Dufresne2016-09-211-22/+22
* Refs #27025 -- Fixed "invalid escape sequence" warnings in Python 3.6.Tim Graham2016-09-171-1/+1
* Refs #25415 -- Fixed invalid models in the test suite.Adam Chainz2016-09-091-1/+1
* Organized forms_tests test_regressions.py.Tim Graham2016-09-091-0/+16
* Refs #27039 -- Fixed regression with field defaults in prefixed forms.Alex Hill2016-09-011-0/+16
* Fixed #27039 -- Fixed empty data fallback to model field default in model forms.Tim Graham2016-08-242-2/+42
* Fixed #27002 -- Prevented double query when rendering ModelChoiceField.Alex Hill2016-08-081-3/+14
* Fixed #27001 -- Fixed a query count regression in ModelChoiceField with Radio...Alex Hill2016-08-031-0/+8
* Fixed #26970 -- Fixed crash with disabled ModelMultipleChoiceField.Tim Graham2016-07-301-0/+25
* Fixed #26917 -- Fixed crash in disabled ModelChoiceFields.Tim Graham2016-07-271-0/+15
* Fixed #17657 -- Made ModelForm respect ModelMultipleChoiceField's to_field_name.Andrey Fedoseev2016-07-121-72/+19
* Replaced use of TestCase.fail() with assertRaises().Tim Graham2016-06-281-16/+7
* Refs #15667 -- Fixed crash when indexing RadioFieldRenderer with ModelChoiceI...Tim Graham2016-06-181-0/+7
* Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne2016-06-161-7/+7
* Fixed #4136 -- Made ModelForm save empty values for nullable CharFields as NULL.Jon Dufresne2016-06-132-7/+31
* Fixed #26734 -- Made iterator class configurable on ModelChoiceField.David Sanders2016-06-091-2/+19