--- a/app/soc/models/base.py Fri Oct 03 23:24:12 2008 +0000
+++ b/app/soc/models/base.py Fri Oct 03 23:59:49 2008 +0000
@@ -27,7 +27,8 @@
from google.appengine.ext import db
-from soc.views.helpers import forms_helpers
+from soc.views import helper
+import soc.views.helper.forms
class ModelWithFieldAttributes(db.Model):
@@ -69,7 +70,7 @@
Property itself via the Model entity.
"""
if not cls._fields_cache or (cls != cls._fields_cache.__class__.Meta.model):
- class FieldsProxy(forms_helpers.DbModelForm):
+ class FieldsProxy(helper.forms.DbModelForm):
"""Form used as a proxy to access User model properties attributes.
"""