web/views/forms.py
branchstable
changeset 3513 c002f6488631
parent 3512 2ceaa4e40348
child 3516 5f18e71e3d42
--- a/web/views/forms.py	Tue Sep 29 12:39:32 2009 +0200
+++ b/web/views/forms.py	Tue Sep 29 12:41:46 2009 +0200
@@ -55,7 +55,6 @@
     """
     id = 'base'
 
-    is_subform = False
     internal_fields = ('__errorurl',) + NAV_FORM_PARAMETERS
 
     # attributes overrideable by subclasses or through __init__
@@ -506,9 +505,9 @@
         super(CompositeFormMixIn, self).__init__(*args, **kwargs)
         self.forms = []
 
-    def form_add_subform(self, subform):
+    def add_subform(self, subform):
         """mark given form as a subform and append it"""
-        subform.is_subform = True
+        subform.parent_form = self
         self.forms.append(subform)
 
     def build_context(self, rendervalues=None):