summaryrefslogtreecommitdiff
path: root/django/forms/models.py
AgeCommit message (Expand)Author
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
2010-11-18Fixed pk uniqueness validation for new objects created outside of a ModelForm...Carl Meyer
2010-11-18Fixed #14234 -- Re-validating a model instance added via ModelForm no longer ...Carl Meyer
2010-10-13Fixed #14119 -- fields_for_model no longer returns all fields when fields par...Honza Král
2010-10-13Fixed #13811 -- Changed unique validation in model formsets to ignore None va...Honza Král
2010-09-11Fixed #13149 -- The admin `ForeignKeyRawIdWidget` now properly handles non-in...Justin Bronn
2010-09-11Fixed #11905: Raise an error on model form creation if a non-existent field w...Karen Tracey
2010-09-10Fixed #13095 -- `formfield_callback` keyword argument is now more sane and wo...Justin Bronn