summaryrefslogtreecommitdiff
path: root/django/newforms/models.py
AgeCommit message (Expand)Author
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-06Changed ModelFormMetaclass to have the normal signature for a __new__ method.Malcolm Tredinnick
2008-06-19Fixed #7475: fixed a possible race condition in ModelChoiceIterator. Thanks, ...Jacob Kaplan-Moss
2008-06-16Fixed #7171 -- Removed some redundant code in ModelChoiceField. Thanks for th...Adrian Holovaty
2008-03-19Fixed #4620: you can now easily add custom labels to ModelChoiceFields via su...Jacob Kaplan-Moss
2008-02-15Trivial comment change in ModelFormMetaclass to better reflect what we are do...Malcolm Tredinnick
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-02-03Fixed #6313 -- Typo fix pointed out by thejaswi_puthraya.Malcolm Tredinnick
2007-12-19Fixed comma splices in PendingDeprecationWarnings of form_for_model and form_...Adrian Holovaty
2007-12-17Fixed #6197 -- Added (optional) formfield_callback argument to ModelForms.__n...Malcolm Tredinnick
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-02Added PendingDeprecationWarmings for form_for_instance/form_for_model.Joseph Kocherhans
2007-12-02Fixed #6042 -- ModelForms implementation from Joseph Kocherhans. Still mightMalcolm Tredinnick
2007-11-19Made use of `EMPTY_VALUES` in `ModelChoiceField.clean()`.Gary Wilson Jr
2007-11-18Fixed #5975 -- Gave `ModelChoiceField` and `ModelMultipleChoiceField` ability...Gary Wilson Jr
2007-11-13Fixed #4787, #5913 -- Updating the queryset on a `ModelChoiceField` or `Model...Gary Wilson Jr
2007-11-11Fixed #5918 -- Removed `SortedDictFromList` since `SortedDict` now can do eve...Gary Wilson Jr
2007-10-29Style fixes.Gary Wilson Jr
2007-08-06Fixed #3297 -- Implemented FileField and ImageField for newforms. Thanks to t...Russell Keith-Magee
2007-08-05Fixed #4001 -- Added dynamic save_m2m method() to forms created with form_for...Russell Keith-Magee
2007-07-04Merged Unicode branch into trunk (r4952:5608). This should be fullyMalcolm Tredinnick
2007-06-15Fixed #3972 -- Updated docstring. Patch from SmileyChris.Malcolm Tredinnick
2007-05-16Fixed #4318 -- Fixed unused imports and other various style tweaks in newform...Adrian Holovaty
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-03-31Fixed #3635 -- Fixed KeyError problem in newforms.model.save_instance().Malcolm Tredinnick
2007-02-21Added a comment to ModelChoiceField from [4552]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-29Improved newforms.models.save_for_instance() to set many-to-many values via I...Adrian Holovaty
2007-01-28Fixed #3263 -- newforms form_for_model() and form_for_instance() now handle f...Adrian Holovaty
2007-01-27Fixed #3334 -- Changed newforms Form class construction so that appending to ...Adrian Holovaty
2007-01-22newforms: Added formfield_callback argument to form_for_model and form_for_in...Adrian Holovaty
2007-01-09Fixed #3232 -- newforms: Added save_instance(), which saves a given bound for...Adrian Holovaty
2007-01-09newforms: Changed model auto-Form generation so that create() and apply_chang...Adrian Holovaty
2006-12-28newforms: Implemented apply_changes() method for form_for_instance FormsAdrian Holovaty
2006-12-28newforms: Implemented form_for_instance(). The resulting Form class does not ...Adrian Holovaty
2006-12-17newforms: Added optional 'form' parameter to form_for_modelAdrian Holovaty
2006-12-15newforms: The Form classes created by form_for_model() now have a create() me...Adrian Holovaty
2006-12-15newforms: Changed form_for_model() to ignore a field if its formfield() retur...Adrian Holovaty
2006-12-15newforms: Added initial implementation of form_for_model and form_for_fieldsAdrian Holovaty
2006-11-25Moved newforms form_for_model and form_for_fields to django/newforms/models.pyAdrian Holovaty