app/soc/models/org_app.py
changeset 795 8914adaa93a7
parent 774 88a827a9b614
child 936 b3e1e0c9649c
equal deleted inserted replaced
794:19c24508c398 795:8914adaa93a7
    37 
    37 
    38   Eventually, this will be replaced with a Question/Answer/Quiz/Response
    38   Eventually, this will be replaced with a Question/Answer/Quiz/Response
    39   approach.  At that time, existing OrgApplication entities will be migrated
    39   approach.  At that time, existing OrgApplication entities will be migrated
    40   (converted) to their new representations in the Datastore.
    40   (converted) to their new representations in the Datastore.
    41   """
    41   """
       
    42   
       
    43   prior_participation = db.TextProperty(required=False,
       
    44     verbose_name=ugettext_lazy(
       
    45       'Has your group participated previously?'
       
    46       ' If so, please summarize your involvement and any past successes'
       
    47       ' and failures.'))
    42 
    48 
       
    49   prior_application = db.TextProperty(required=False,
       
    50     verbose_name=ugettext_lazy(
       
    51       'If your group has not previously participated, have you applied in'
       
    52       ' the past?  If so, for what sort of participation?'))
       
    53   
    43   license_name = db.StringProperty(required=True,
    54   license_name = db.StringProperty(required=True,
    44     verbose_name=ugettext_lazy(
    55     verbose_name=ugettext_lazy(
    45       'What license does your organization use?'))
    56       'What license does your organization use?'))
    46  
    57  
    47   ideas = db.ReferenceProperty(reference_class=soc.models.document.Document,
    58   ideas = db.ReferenceProperty(reference_class=soc.models.document.Document,