app/soc/views/models/student_proposal.py
changeset 2177 e2c193e1f631
parent 2174 19ed1c42e836
child 2179 efc3a50a81ef
--- a/app/soc/views/models/student_proposal.py	Mon Apr 13 15:30:48 2009 +0000
+++ b/app/soc/views/models/student_proposal.py	Mon Apr 13 15:31:39 2009 +0000
@@ -165,7 +165,7 @@
         dynaform=self._params['create_form'],
         dynaproperties=dynaproperties)
 
-    params['student_create_form'] = student_create_form
+    self._params['student_create_form'] = student_create_form
 
     # create the special form for public review
     dynafields = [
@@ -184,7 +184,7 @@
     public_review_form = dynaform.newDynaForm(dynamodel=None, 
         dynabase=helper.forms.BaseForm, dynainclude=None, 
         dynaexclude=None, dynaproperties=dynaproperties)
-    params['public_review_form'] = public_review_form
+    self._params['public_review_form'] = public_review_form
 
     # create the special form for mentors
     dynafields = [
@@ -229,7 +229,7 @@
     mentor_review_form = dynaform.newDynaForm(dynamodel=None, 
         dynabase=helper.forms.BaseForm, dynainclude=None, 
         dynaexclude=None, dynaproperties=dynaproperties)
-    params['mentor_review_form'] = mentor_review_form
+    self._params['mentor_review_form'] = mentor_review_form
 
     dynafields = [
       {'name': 'rank',
@@ -262,7 +262,7 @@
     admin_review_form = dynaform.extendDynaForm(dynaform=mentor_review_form, 
         dynaproperties=dynaproperties)
 
-    params['admin_review_form'] = admin_review_form
+    self._params['admin_review_form'] = admin_review_form
 
   def _editGet(self, request, entity, form):
     """See base.View._editGet().