summaryrefslogtreecommitdiff
path: root/django/forms
AgeCommit message (Expand)Author
2009-04-11Fixed #10645 -- Added some robustness around some admin and modelform params.Malcolm Tredinnick
2009-04-10Fixed #10038: make `BaseModelFormSet.save_existing_objects` use `Form.has_cha...Jacob Kaplan-Moss
2009-04-10Fixed #10774: accessing form media types in templates (i.e. ``{{ form.media.j...Jacob Kaplan-Moss
2009-04-08Fixed #8422: FilePathField now respects required=False.Jacob Kaplan-Moss
2009-04-02Fixed #9651: fixed save_as with inline forms. Thanks, kmike and Mnewman.Jacob Kaplan-Moss
2009-04-01Fixed a bug introduced by [10316].Jacob Kaplan-Moss
2009-04-01Fixed #9473: FormWizard now works with NullBooleanFields. As a bonus, we now ...Jacob Kaplan-Moss
2009-03-31Forms in model formsets and inline formsets can now be deleted even if they d...Joseph Kocherhans
2009-03-31Fixed #9863. A ForeignKey with editable=False to the parent in an inline no l...Joseph Kocherhans
2009-03-30Fixed #8746: Check data in raw_id_fields more closely. Thanks, dgouldinJacob Kaplan-Moss
2009-03-30Fixed #10149. FileFields in a form now validate max_length. Based on a patch ...Joseph Kocherhans
2009-03-30Fixed #9587. Formset.is_valid() now returns True if an invalid form is marked...Joseph Kocherhans
2009-03-30Fixed #9284. Fixed #8813. BaseModelFormSet now calls ModelForm.save().Joseph Kocherhans
2009-03-22Fixed #8962 -- Consistently support format and input_format in the various (i...Karen Tracey
2009-03-17Fixed `BaseFormSet.is_multipart()` so that it doesn't bomb when called on an ...Jacob Kaplan-Moss
2009-03-17Fixed #10512 -- Corrected the handling of extra fields on a ModelForm. Thanks...Russell Keith-Magee
2009-03-15Fixed #8164 -- Fields on a ModelForm are now ordered in the order specified i...Russell Keith-Magee
2009-03-10Fixed #10271, #10281 -- Fixed the handling multiple inline models that share...Russell Keith-Magee
2009-02-03Fixed 10075: Allowed saving of inline-edited models that use multi-table inhe...Karen Tracey
2009-01-19Fixed #10069 -- Fixed the model form unique validation code to not proceed wi...Karen Tracey
2008-12-23Fixed #9882 -- Added `alters_data = True` to `BaseModelForm.save` method, tha...Gary Wilson Jr
2008-12-21Fixed #9865 -- Allow saving of new inline-edited objects with custom non-auto...Karen Tracey
2008-12-08The first step in fixing a group of problems related to outputting a properMalcolm Tredinnick
2008-12-08Edited docs/topics/forms/index.txt changes from [9569] and fixed a typo in th...Adrian Holovaty
2008-12-05Added a way to iterate over hidden/visible fields in a form. Useful for manualMalcolm Tredinnick
2008-11-14Fixed #9076 -- Changed BaseInlineFormSet to not override BaseModelFormSet's g...Karen Tracey
2008-11-10Fixed #7064: Made DemicmalField validation support max_digits equal to decima...Karen Tracey
2008-11-10Fixed #6035 -- Gave the SplitDateTimeField the proper default widget. Thanks...Karen Tracey
2008-11-06Fixed #6160, #9111 -- Consistently apply conditional_escape to form errors an...Karen Tracey
2008-11-05Fixed #9218 -- Simplified the fix from #9039 and added tests to ensure this c...Karen Tracey
2008-11-04Fixed #9418 -- When saving a model form, defer saving of file-type fields unt...Karen Tracey
2008-11-01Fixed #9494 -- Ensure the foreign key in an inline formset is always present ...Brian Rosner
2008-10-31Fixed #8882 -- When a foreign key is among the unique_together fields in an i...Brian Rosner
2008-10-28Fixed #9462 -- Set the instance in an inline formset correctly so that None d...Brian Rosner
2008-10-24Fixed #9384 -- Fixed a couple of typos. Thanks, Thomas Güttler and romke.Malcolm Tredinnick
2008-10-21Fixed #9039 -- Don't perform unique checks on NULL values, since NULL != NULL...Karen Tracey
2008-10-08Fixed #9319 -- Fixed a crash when using the same model field in multipleMalcolm Tredinnick
2008-10-05Fixed #9294 -- Removed a (harmless) double conversion to unicode in one formMalcolm 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
2008-09-03Fixed #8841 -- Fixed a case of ForeignKeys to models constructed withMalcolm Tredinnick
2008-09-03Fixed #8828 -- Trimmed some trailing whitespace that might have been causing aMalcolm 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-01Removed a conditional that slipped by that makes inline model formsets fail v...Brian Rosner
2008-09-01Fixed #7975 -- Callable defaults in inline model formsets now work correctly....Brian Rosner
2008-09-01Fixed #8209: `ModelForm`s now validate unique constraints. Alex Gaynor did mu...Jacob Kaplan-Moss