diff -r b0eeea9d6da6 -r da80c6519eea app/soc/models/review.py --- a/app/soc/models/review.py Wed Oct 01 07:26:45 2008 +0000 +++ b/app/soc/models/review.py Wed Oct 01 09:43:25 2008 +0000 @@ -69,8 +69,9 @@ #: back-reference in the Survey model is a Query named 'reviews' #: which represents all of the Reviews that contains Answers to the #: Questions in that particular Survey. - survey = db.ReferenceProperty(reference_class=soc.models.survey.Survey, - required=True, collection_name="reviews") + # TODO: Uncomment when Survey model is committed + #survey = db.ReferenceProperty(reference_class=soc.models.survey.Survey, + # required=True, collection_name="reviews") #: A required many:1 relationship with a Work, where the Review #: answers are attached to the Work as a comment, evaluation,