summaryrefslogtreecommitdiff
path: root/django/forms/models.py
AgeCommit message (Expand)Author
2013-07-13[1.6.x] Fixed #20582 -- Allowed default Form.label_suffix to be translatedClaude Paroz
2013-06-18Fixed #20199 -- Allow ModelForm fields to override error_messages from model ...Loic Bistuer
2013-06-18Refactored ValidationError to allow persisting error params and error codes a...Loic Bistuer
2013-06-13Fixed #20000 -- Allowed ModelForm meta overrides for label, help_text and err...Loic Bistuer
2013-06-06Fixed #12337 - Honor ModelForm.Meta.exclude when saving ManyToManyFields.Stephen Burrows
2013-05-30Added missing stacklevel arg in forms/models.pyClaude Paroz
2013-05-23Made fix for #9321 less buggy and more effective.Ramiro Morales
2013-05-20Fixed #9321 -- Deprecated hard-coding of help text in model ManyToManyField f...Ramiro Morales
2013-05-18Fixed argument order for localized_fields to ensure backwards compatibilityErik Romijn
2013-05-18Fixed #13546 -- Easier handling of localize field options in ModelFormErik Romijn
2013-05-09Fixed #19733 - deprecated ModelForms without 'fields' or 'exclude', and added...Luke Plant
2013-04-13Fixed #17840 -- Generalized named placeholders in form error messagesClaude Paroz
2013-04-07Fix #15126: Better error message when passing invalid options to ModelForm.Meta.Baptiste Mispelon
2013-03-25Removed forced typecasting of help_text/label Field argumentsClaude Paroz
2013-03-24Fixed #19385 again, now with real code changesAnssi Kääriäinen
2013-03-21Fixed #20084 -- Provided option to validate formset max_num on server.Andrew Gorcester
2013-03-08Fixed #15363 -- Renamed and normalized to `get_queryset` the methods that ret...Loic Bistuer
2013-03-07Fixed #19997 -- Added custom EMPTY_VALUES to form fieldsClaude Paroz
2013-03-01Fixed #18898 -- Added tests with a fix for ModelMultipleChoiceFieldClaude Paroz
2013-03-01Fixed #16612 -- Improved has_changed detection for localized field valuesClaude Paroz
2013-02-23Fixed #18829 -- Fixed ModelChoiceIterator lengthKlaas van Schelven
2013-02-23Fixed #15877 -- Improved exception when ModelForm has no model classClaude Paroz
2013-02-23Method "save" in BaseModelFormSet is marked as alters_dataKlaas van Schelven
2013-02-08Fixed #18906 -- Ignored to-be-deleted forms in formset validate_uniqueClaude Paroz
2013-02-05Fixed #17683 -- Make sure `BaseModelFormSet` respects defined widgets.Simon Charette
2013-01-25Moved has_changed logic from widget to form fieldClaude Paroz
2013-01-24Fixed #17416 -- Added widgets argument to inlineformset_factory and modelform...Nick Sandford
2013-01-18Avoided unnecessary recreation of RelatedObjectsAnssi Kääriäinen
2013-01-11Fixed #10239 - Added docs for modelform_factoryTim Graham
2012-12-28Fix #19524 -- Incorrect caching of parents of unsaved model instances.Aymeric Augustin
2012-12-19Fixed #18172 -- Made models with __iter__ usable in ModelMultipleChoiceFieldPatryk Zawadzki
2012-11-04Fixed #18949 -- Improve performance of model_to_dict with many-to-manyAnton I. Sipos
2012-10-03Fixed #14567 -- Made ModelMultipleChoiceField return EmptyQuerySet as empty v...Stephen Burrows
2012-08-30Fixed #18751 -- Cleaned up BaseFormSet._should_delete_formClaude Paroz
2012-08-23[py3] Removed duplicate imports.Aymeric Augustin
2012-08-14[py3] Removed a remaining use of __metaclass__.Aymeric Augustin
2012-08-08[py3] Fixed 'iterable but non string' detectionClaude Paroz
2012-08-07[py3] Ported django.utils.encoding.Aymeric Augustin
2012-08-07[py3] Fixed access to dict keys/values/items.Aymeric Augustin
2012-08-04Fixed #5524 -- Do not remove cleaned_data when a form fails validationClaude Paroz
2012-08-03Replaced some byte strings by str() callsClaude Paroz
2012-07-25it's -> itsPiet Delport
2012-07-22[py3] Replaced unicode/str by six.text_type/bytes.Aymeric Augustin
2012-07-22[py3] Used six.with_metaclass wherever necessary.Aymeric Augustin
2012-06-07Fixed #18269 -- Applied unicode_literals for Python 3 compatibility.Claude Paroz
2012-05-19Marked bytestrings with b prefix. Refs #18269Claude Paroz
2012-04-29Fixed #18013 -- Use the new 'as' syntax for exceptions.Claude Paroz
2012-02-04Fixed #17594 -- Stopped ModelFormset.save from running a SELECT query by rely...Jannis Leidel
2012-01-15Added support for specifying initial values to model formsets and inline form...Ramiro Morales
2011-10-17Remove several more relative imports.Alex Gaynor