summaryrefslogtreecommitdiff
path: root/django/forms
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-13[1.0.X] Fixed #10288 -- Corrected _has_changed handling of DateTimeInput when...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-05-02Fixed #9609 -- Modified the clean method of(Null)Boolean field to accept '1' ...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-28[1.0.X] Fixed #10082 -- Modified BaseFormSet so that ordering checks work whe...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 #10002: inline file uploads now correctly display prior data. T...Jacob Kaplan-Moss
2009-04-18[1.0.X] Fixed #9124: fixed `SelectDateWidget` with `required=False`. Thanks, ...Jacob Kaplan-Moss
2009-04-18[1.0.X\ Fixed #10156: `ModelMultipleChoiceField.clean` now does a single quer...Jacob Kaplan-Moss
2009-04-16[1.0.X] Fixed #9948 -- Corrected URLField validation to match RFC1035 (URL an...Russell Keith-Magee
2009-04-16[1.0.X] Fixed #9890 -- Modified the regex validation for email addresses to m...Russell Keith-Magee
2009-04-10[1.0.X] Fixed #10038: make `BaseModelFormSet.save_existing_objects` use `Form...Jacob Kaplan-Moss
2009-04-10[1.0.X] Fixed #10774: accessing form media types in templates (i.e. ``{{ form...Jacob Kaplan-Moss
2009-04-08[1.0.X] Fixed #8422: FilePathField now respects required=False. Backport of r...Jacob Kaplan-Moss
2009-04-01[1.0.X] Fixed #9473: FormWizard now works with NullBooleanFields. As a bonus,...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-30[1.0.X] Fixed #10149. FileFields? in a form now validate max_length. Based on...Joseph Kocherhans
2009-03-30[1.0.X] Fixed #9587. Formset.is_valid() now returns True if an invalid form i...Joseph Kocherhans
2009-03-17[1.0.X] Fixed `BaseFormSet.is_multipart()` so that it doesn't bomb when calle...Jacob Kaplan-Moss
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-10[1.0.X] Fixed #7064: Made DemicmalField validation support max_digits equal t...Karen Tracey
2008-11-10[1.0.X] Fixed #6035 -- Gave the SplitDateTimeField the proper default widget....Karen Tracey
2008-11-06[1.0.X] Fixed #6160, #9111 -- Consistently apply conditional_escape to form e...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-24[1.0.X] Fixed #9384 -- Fixed a couple of typos. Thanks, Thomas Güttler and r...Malcolm Tredinnick
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-18Fixed #9125 -- When displaying errors for a form with only hidden fields, mak...Malcolm Tredinnick