app/soc/models/survey_record.py
changeset 2763 80d625f78176
parent 2588 db306bbda381
child 2975 e73c0eb59022
equal deleted inserted replaced
2762:02b464717ef5 2763:80d625f78176
    26 
    26 
    27 from google.appengine.ext import db
    27 from google.appengine.ext import db
    28 
    28 
    29 from django.utils.translation import ugettext
    29 from django.utils.translation import ugettext
    30 
    30 
       
    31 from soc.models.expando_base import ExpandoBase
    31 from soc.models.survey import Survey
    32 from soc.models.survey import Survey
    32 import soc.models.user
    33 import soc.models.user
    33 
    34 
    34 
    35 
    35 class BaseSurveyRecord(db.Expando):
    36 class BaseSurveyRecord(ExpandoBase):
    36   """Record produced each time Survey is taken.
    37   """Record produced each time Survey is taken.
    37 
    38 
    38   Like SurveyContent, this model includes dynamic properties
    39   Like SurveyContent, this model includes dynamic properties
    39   corresponding to the fields of the survey.
    40   corresponding to the fields of the survey.
    40   """
    41   """