summaryrefslogtreecommitdiff
path: root/django/forms/models.py
AgeCommit message (Expand)Author
2009-05-29[1.0.X] Fixed a few Python 2.3 incompatibilities that were causing test failu...Gary Wilson Jr
2009-05-15[1.0.X] Fixed #11120 -- Corrected handling of inlines attached to inherited c...Russell Keith-Magee
2009-05-14[1.0.X] Fixed #10992: fixed a bug saving inlines with custom primary key fiel...Jacob Kaplan-Moss
2009-05-14[1.0.X] Fixed a weird intentation glitch in `django/forms/models.py`. Five sp...Jacob Kaplan-Moss
2009-05-13[1.0.X] Fixed #10243, #11043 -- Corrected handling of formsets over a Foreign...Russell Keith-Magee
2009-05-11[1.0.X] Changed r10672 to not falsely error out when using generic inlines.Malcolm Tredinnick
2009-05-11[1.0.X] Fixed #10792 -- Ensured that ModelChoiceFields don't provide an empty...Russell Keith-Magee
2009-05-08[1.0.X] Fixed #9493 -- Corrected error handling of formsets that violate uniq...Russell Keith-Magee
2009-04-30[1.0.X] Fixed #10134 -- Added unique_for_[date|day|month|year] validation to ...Russell Keith-Magee
2009-04-23[1.0.X] Fixed #10163: add an artificial ordering to querysets used by formset...Jacob Kaplan-Moss
2009-04-22[1.0.X] Fixed #10208: `ModelAdmin` now respects the `exclude` and `field` atr...Jacob Kaplan-Moss
2009-04-21[1.0.X] Fixed #9651: fixed save_as with inline forms. Thanks, kmike and Mnewm...Karen Tracey
2009-04-18[1.0.X\ Fixed #10156: `ModelMultipleChoiceField.clean` now does a single quer...Jacob Kaplan-Moss
2009-04-10[1.0.X] Fixed #10038: make `BaseModelFormSet.save_existing_objects` use `Form...Jacob Kaplan-Moss
2009-03-31[1.0.X] Fixed #8746: Check data in raw_id_fields more closely. Thanks, dgouldinJacob Kaplan-Moss
2009-03-31[1.0.X] Fixed #9863. A ForeignKey with editable=False to the parent in an inl...Joseph Kocherhans
2009-03-31[1.0.X] Forms in model formsets and inline formsets can now be deleted even i...Joseph Kocherhans
2009-03-10[1.0.X] Fixed #10271, #10281 -- Fixed the handling multiple inline models th...Russell Keith-Magee
2009-02-03Fixed #10075: Allowed saving of inline-edited models that use multi-table inh...Karen Tracey
2009-01-19[1.0.X] Fixed #10069 -- Fixed the model form unique validation code to not pr...Karen Tracey
2008-12-23[1.0.X] Fixed #9882 -- Added `alters_data = True` to `BaseModelForm.save` met...Gary Wilson Jr
2008-12-21[1.0.X] Fixed #9865 -- Allow saving of new inline-edited objects with custom ...Karen Tracey
2008-12-08[1.0.X] The first step in fixing a group of problems related to outputting aMalcolm Tredinnick
2008-11-14[1.0.X] Fixed #9076 -- Changed BaseInlineFormSet to not override BaseModelFor...Karen Tracey
2008-11-05[1.0.X] Fixed #9218 -- Simplified the fix from #9039 and added tests to ensur...Karen Tracey
2008-11-04[1.0.X] Fixed #9418 -- When saving a model form, defer saving of file-type fi...Karen Tracey
2008-11-01[1.0.X] Fixed #9494 -- Ensure the foreign key in an inline formset is always ...Brian Rosner
2008-10-31[1.0.X] Fixed #8882 -- When a foreign key is among the unique_together fields...Brian Rosner
2008-10-28[0.5.X] Fixed #9462 -- Set the instance in an inline formset correctly so tha...Brian Rosner
2008-10-21[1.0.X] Fixed #9039 -- Don't perform unique checks on NULL values, since NULL...Karen Tracey
2008-10-08[1.0.X] Fixed #9319 -- Fixed a crash when using the same model field in multipleMalcolm Tredinnick
2008-09-27Fixed #9171 -- Fixed a few places where we were assuming lists instead ofMalcolm Tredinnick
2008-09-03Fixed #8841 -- Fixed a case of ForeignKeys to models constructed withMalcolm Tredinnick
2008-09-02Fixed #8788: fixed a few typoes in [8805]. Thanks, Matthew Flanagan and mir.Jacob Kaplan-Moss
2008-09-02Fixed #8795: unique_together validation no longer fails on model forms that e...Jacob Kaplan-Moss
2008-09-01Fixed #8648 -- Admin no longer ignores to_field. Thanks for the help Karen Tr...Brian Rosner
2008-09-01Fixup for Python 2.3.Malcolm Tredinnick
2008-09-01Fixed #8777: use better capitalization in unique together error message. Than...Jacob Kaplan-Moss
2008-09-01Fixed #8209: `ModelForm`s now validate unique constraints. Alex Gaynor did mu...Jacob Kaplan-Moss
2008-08-31Enforce max_num=1 on inline model formsets that have a unique foreign key to ...Brian Rosner
2008-08-31Fixed handling of primary keys in model formsets. Model formsets should now w...Brian Rosner
2008-08-29Fixed #7918 -- Allow the foreign key in an inline to be any where in the pare...Brian Rosner
2008-08-27Fixed #7289 -- Made ModelForms behave like Forms in the sense that FieldMalcolm Tredinnick
2008-08-25Fixed #7888 -- Handle model inheritance with model formsets correctly. Thanks...Brian Rosner
2008-08-23Fixed #7244 -- Allow widget overriding in subclasses for ModelChoiceField,Malcolm Tredinnick
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-08-08Fixed #8069 -- Corrected the inconsistent case with BaseInlineFormset. It has...Brian Rosner
2008-08-01Ensure that custom primary keys are always shown on a formset. Refs #7938. Th...Brian Rosner
2008-08-01Fixed #8030 - use super() in BaseModelFormLuke Plant
2008-08-01Modified inline handling to allow for an inline formset to be displayed when ...Russell Keith-Magee