Since DbModelForm has been renamed to BaseForm change super() call from BaseForm to djangoforms.ModelForm in soc.views.helper.forms module.
Patch by: Pawel Solyga
--- a/app/soc/views/helper/forms.py Mon Dec 15 01:11:12 2008 +0000
+++ b/app/soc/views/helper/forms.py Mon Dec 15 01:12:28 2008 +0000
@@ -57,7 +57,7 @@
Args:
*args, **kwargs: passed through to parent __init__() constructor
"""
- super(BaseForm, self).__init__(*args, **kwargs)
+ super(djangoforms.ModelForm, self).__init__(*args, **kwargs)
for field_name in self.fields.iterkeys():
# Since fields can be added only to the ModelForm subclass, check to