django1/django/newforms
Adrian Holovaty 6001974e45 newforms: Added initial implementation of form_for_model and form_for_fields
git-svn-id: http://code.djangoproject.com/svn/django/trunk@4205 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2006-12-15 05:46:11 +00:00
..
__init__.py Moved newforms form_for_model and form_for_fields to django/newforms/models.py 2006-11-25 06:33:59 +00:00
fields.py Fixed #3143 -- Added TimeField to newforms. Thanks, jkocherhans 2006-12-14 20:35:32 +00:00
forms.py newforms: Split the Form class into BaseForm and Form. The former has all the Form logic; the latter just implements the metaclass that allows for declarative form definition. This change makes it easier to allow other (i.e., non-declarative) designation of a form's fields in creating a form class 2006-12-15 05:35:19 +00:00
models.py newforms: Added initial implementation of form_for_model and form_for_fields 2006-12-15 05:46:11 +00:00
util.py newforms: Added __unicode__() methods wherever there were __str__() methods, and changed the __str__() methods to delegate to __unicode__().encode(settings.DEFAULT_CHARSET) 2006-12-05 20:08:27 +00:00
widgets.py Fixed #3114 -- newforms MultipleChoiceField now handles MultiValueDicts properly. Thanks for the patch, Honza Král 2006-12-13 06:26:04 +00:00