summaryrefslogtreecommitdiff
path: root/tests/modeltests/model_forms/models.py
AgeCommit message (Expand)Author
2008-09-01Fixed #8209: `ModelForm`s now validate unique constraints. Alex Gaynor did mu...Jacob Kaplan-Moss
2008-08-31Fixed #6967: `ModelForm`s now validate choices. Thanks, mattmcc -- the failin...Jacob Kaplan-Moss
2008-08-31Fixed handling of primary keys in model formsets. Model formsets should now w...Brian Rosner
2008-08-28Fixed #8556: added a useful formfield to `CommaSeparatedIntegerField`. gkelly...Jacob Kaplan-Moss
2008-08-25Fixed #7888 -- Handle model inheritance with model formsets correctly. Thanks...Brian Rosner
2008-08-23Fixed #8040 -- SlugField now returns a proper formfield to deal with validati...Brian Rosner
2008-08-22Fixed #7947 -- Handle the display of OneToOneField in model forms correctly. ...Brian Rosner
2008-08-12Fixed a couple typos in the modeltests' descriptions and made use of ReST inl...Gary Wilson Jr
2008-08-10Fixed #7830 -- Removed all of the remaining, deprecated, non-oldforms features:Gary Wilson Jr
2008-08-09Fixed #8187: made PIL imports consistant. Thanks, bastih.Jacob Kaplan-Moss
2008-08-08File storage refactoring, adding far more flexibility to Django's file handli...Jacob Kaplan-Moss
2008-07-21Fixed #7727 -- Improved the checks for import failure when using PIL. Under P...Russell Keith-Magee
2008-07-19Reverted [7986].Malcolm Tredinnick
2008-07-19Fixed #5619 -- Return the same path in get_FOO_filename() before and after aMalcolm Tredinnick
2008-07-19Fixed #7741: django.newforms is now django.forms. This is obviously a backwar...Jacob Kaplan-Moss
2008-07-18Merged the newforms-admin branch into trunk.Brian Rosner
2008-07-12FIxed #7696: fixed model_form tests on Windows after [7814]. Thanks, Marty Al...Jacob Kaplan-Moss
2008-07-07Fixed #7614: the quickening has come, and there now is only one UploadedFile....Jacob Kaplan-Moss
2008-07-01Fixed #2070: refactored Django's file upload capabilities.Jacob Kaplan-Moss
2008-03-20Fixed #6825 -- Fixed the model_forms tests to also work on Windows by makingMalcolm Tredinnick
2008-03-19Fixed #4620: you can now easily add custom labels to ModelChoiceFields via su...Jacob Kaplan-Moss
2008-03-19Replaced dict reprs in tests with explicit looks at each key. This should fix...Jacob Kaplan-Moss
2008-02-14Modified [7112] to make things behave more in line with Python subclassing wh...Malcolm Tredinnick
2008-02-14Fixed #6337. Refs #3632 -- Fixed ModelForms subclassing, to the extent that i...Malcolm Tredinnick
2008-01-18Fixed #6302 for ImageFields.Jacob Kaplan-Moss
2008-01-17Fixed #6302. FileField no longer requires a value if one already exists. Than...Joseph Kocherhans
2007-12-13Changed ModelForms to allow inheritance as long as their model attributes are...Joseph Kocherhans
2007-12-13Fixed #6162. ModelForm's __init__ signature now matches Form's. This is a bac...Joseph Kocherhans
2007-12-02Fixed #6042 -- ModelForms implementation from Joseph Kocherhans. Still mightMalcolm Tredinnick
2007-11-29Fixed #4653 -- Improved the logic to decide when to include (and select asMalcolm Tredinnick
2007-11-13Fixed #4787, #5913 -- Updating the queryset on a `ModelChoiceField` or `Model...Gary Wilson Jr
2007-11-09Corrected a couple comments in `model_forms` tests.Gary Wilson Jr
2007-09-15Added explicit order_by filters to some model_forms tests that were failing i...Ian Kelly
2007-09-14Fixed test case that failed on Oracle because it assumed an ordering for Matt Boersma
2007-09-08Fixed #3557 -- Made `SlugField` inherit from `CharField` so that its `max_len...Gary Wilson Jr
2007-08-05Fixed #4001 -- Added dynamic save_m2m method() to forms created with form_for...Russell Keith-Magee
2007-08-05Fixed #2101 -- Renamed `maxlength` argument to `max_length` for oldforms `For...Gary Wilson Jr
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-05-14Changed the fix from [5231] so that the backwards-incompatibility is made moreMalcolm Tredinnick
2007-05-12Added docs for form_for_model and form_for_instance, and added a fields argum...Russell Keith-Magee
2007-04-28Fixed #3268 -- Changed default model formfields to use a select widget when theMalcolm Tredinnick
2007-04-09Fixed #3929 -- Newforms Textarea widget now always includes 'rows' and 'cols'...Adrian Holovaty
2007-03-23Renumbered all the doctest examples so that they are ordered correctly on the...Jacob Kaplan-Moss
2007-02-21Changed database PhoneNumberField to use USPhoneNumberField as its newforms f...Adrian Holovaty
2007-02-21Fixed #3534 -- newforms ModelChoiceField and ModelMultipleChoiceField no long...Adrian Holovaty
2007-02-20Fixed #3247 -- newforms form_for_model() and form_for_instance() no longer cr...Adrian Holovaty
2007-02-20Fixed #3257 -- Added newforms ModelChoiceField and ModelMultipleChoiceField, ...Adrian Holovaty
2007-01-28newforms: Changed database Field formfield() methods to pass help_text to the...Adrian Holovaty
2007-01-28Fixed #3263 -- newforms form_for_model() and form_for_instance() now handle f...Adrian Holovaty
2007-01-10Fixed #3267 -- newforms: Changed database TextField to render as Textarea in ...Adrian Holovaty