summaryrefslogtreecommitdiff
path: root/django/forms/models.py
AgeCommit message (Expand)Author
2017-03-22[1.11.x] Fixed #27975 -- Fixed crash if ModelChoiceField's queryset=None.James Beith
2017-03-15[1.11.x] Refs #27563 -- Fixed ModelChoiceField.__deepcopy__() so forms don't ...Tim Graham
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-09-22Fixed #27186 -- Fixed model form default fallback for MultiWidget, FileInput,...Tim Graham
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-07-30Fixed #26970 -- Fixed crash with disabled ModelMultipleChoiceField.Tim Graham
2016-06-09Fixed #26734 -- Made iterator class configurable on ModelChoiceField.David Sanders
2016-05-11Refs #24227 -- Removed ManyToManyField special casing in model_to_dict().Tim Graham
2016-04-26Fixed #21332, #26538 -- Fixed inconsistent and duplicate form fields on inlin...David Sanders
2016-04-21Fixed #22383 -- Added support for HTML5 required attribute on required form f...Jon Dufresne
2016-04-13Refs #16508 -- Renamed the current "virtual" fields to "private".Michal Petrucha
2016-04-08Fixed E128 flake8 warnings in django/.Tim Graham
2016-04-04Fixed W503 flake8 warnings.Tim Graham
2016-03-26Fixed #25987 -- Made inline formset validation respect unique_together with a...Simon Charette
2016-03-25Removed unnecessary type creation in modelforset_factory.Simon Charette
2016-03-19Refs #24227 -- Replaced M2M isinstance checks by field.many_to_manyClaude Paroz
2016-02-26Fixed #24974 -- Fixed inheritance of formfield_callback for modelform_factory...Yoong Kang Lim
2016-02-21Fixed #26238 -- Raised explicit error for non-editable field in ModelFormClaude Paroz
2016-02-19Fixed #25349 -- Allowed a ModelForm to unset a fields with blank=True, requir...haxoza
2015-11-09Fixed #25683 -- Allowed ModelChoiceField(queryset=...) to accept Managers.Marti Raudsepp
2015-10-05Fixed #25496 -- Made ModelChoiceField respect prefetch_related().Tim Graham
2015-09-21Fixed #25431 -- Readded inline foreign keys to modelformset instancesClaude Paroz
2015-09-12Fixed #23395 -- Limited line lengths to 119 characters.Dražen Odobašić
2015-09-07Fixed #24706 -- Made ModelForm._post_clean() handle a ValidationError raised ...Keryn Knight
2015-08-07Removed forms.models.save_instance() function.Tim Graham
2015-08-07Fixed #25241 -- Corrected ModelForm.save() error message when saving invalid ...Tim Graham
2015-07-14Fixed #25097 -- Added BaseModelFormSet.delete_existing() hook.Simon Litchfield
2015-06-26Fixed #24958 -- Fixed inline forms using UUID-PK parents with auto-PK children.Jason Hoos
2015-05-13Removed unnecessary arguments in .get method callsPiotr Jakimiak
2015-05-08Fixed #24771 -- Simplified ModelForm._post_clean()Peter Schmidt
2015-05-02Fixed #24693 -- Added label and label_lower property to Model._metaLuis Del Giudice
2015-03-25Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen
2015-02-24Fixed #24395 -- Ensured inline ModelsForms have an updated related instance.Stanislas Guerra
2015-02-23Fixed #24377 -- Fixed model inline formsets with primary key's that have defa...Tim Graham
2015-02-13Fixed #24295 -- Allowed ModelForm meta to specify form field classes.Loic Bistuer
2015-02-06Sorted imports with isort; refs #23860.Tim Graham
2015-01-20Fixed typos in code comments.Adam Taylor
2015-01-17Removed unused imports.Tim Graham
2015-01-17Removed Multiple/ModelChoiceField cache_choices option; refs #22838.Tim Graham
2015-01-13Fixed DoS possibility in ModelMultipleChoiceField.Tim Graham
2015-01-12Fixed #24138 -- Added modelform_factory to __all__.Josh Schneier
2015-01-06Fixed #12663 -- Formalized the Model._meta API for retrieving fields.Daniel Pyrathon
2014-12-23Fixed #21414 -- Removed RelatedObject and deprecated Field.related.Anssi Kääriäinen
2014-12-08Fixed #23968 -- Replaced list comprehension with generators and dict comprehe...Jon Dufresne
2014-11-21Fixed typo in forms/models.py comment.Simon Charette
2014-11-12Fixed #23795 -- Fixed a regression in custom form fieldsBaptiste Mispelon
2014-10-10Fixed #23623 -- Reduced memory consumption when generating ModelChoiceField c...Thomas Chaumeny