summaryrefslogtreecommitdiff
path: root/django/forms/models.py
AgeCommit message (Expand)Author
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
2011-08-23Fixed #15315 -- Added support for the 'widget' argument to modelform_factory....Russell Keith-Magee
2011-08-12Fixed #16584 -- Fixed a bunch of typos in code comments. Thanks, Bernhard Essl.Jannis Leidel
2011-07-13Fixed #16225 -- Removed unused imports. Many thanks to Aymeric Augustin for t...Jannis Leidel
2011-06-07Fixed #14082 -- Use metaclass of provided ModelForm subclass in modelform_fac...Carl Meyer
2011-05-01Replaced old-style with new-style decorator syntax.Jannis Leidel
2011-04-22Fixed #6953 -- Correctly sort ManyToMany fields in ModelForms. Thanks, dgould...Jannis Leidel
2011-03-14Importing django.forms no longer requires DJANGO_SETTINGS_MODULE. Moved djang...Adrian Holovaty
2011-02-21Fixed #14099 - BaseModelFormSet should use _should_delete_formLuke Plant
2011-02-19Fixed #9161 -- Ensure that ModelMultipleChoiceField respects to_field_name in...Russell Keith-Magee
2011-02-05Fixed #15167 -- Ensure that non-form errors are always part of an ErrorList. ...Russell Keith-Magee
2011-01-25Fixed #14938 - Fixed save-as-new on inline formset with new forms.Carl Meyer
2011-01-25Removed dead code in modelforms.Carl Meyer
2011-01-25Fixed #11319 - Added lookup support for ForeignKey.to_field. Also reverted no...Carl Meyer
2010-12-12Fixed #14144 -- Made sure custom validators are called in ModelMultipleChoice...Jannis Leidel