app/soc/models/org_app.py
changeset 1562 0e1a93e0c54d
parent 1404 3baec5ce9911
child 1566 5388270fb363
equal deleted inserted replaced
1561:fe1b141bfc2c 1562:0e1a93e0c54d
    39 
    39 
    40   Eventually, this will be replaced with a Question/Answer/Quiz/Response
    40   Eventually, this will be replaced with a Question/Answer/Quiz/Response
    41   approach.  At that time, existing OrgApplication entities will be migrated
    41   approach.  At that time, existing OrgApplication entities will be migrated
    42   (converted) to their new representations in the Datastore.
    42   (converted) to their new representations in the Datastore.
    43   """
    43   """
    44   
    44 
    45   prior_participation = db.TextProperty(required=False, verbose_name=ugettext(
    45   prior_participation = db.TextProperty(required=False, verbose_name=ugettext(
    46       'Has your group participated previously?'
    46       'Has your group participated previously?'
    47       ' If so, please summarize your involvement and any past successes'
    47       ' If so, please summarize your involvement and any past successes'
    48       ' and failures.'))
    48       ' and failures.'))
    49 
    49 
    50   prior_application = db.TextProperty(required=False, verbose_name=ugettext(
    50   prior_application = db.TextProperty(required=False, verbose_name=ugettext(
    51       'If your group has not previously participated, have you applied in'
    51       'If your group has not previously participated, have you applied in'
    52       ' the past?  If so, for what sort of participation?'))
    52       ' the past?  If so, for what sort of participation?'))
    53   
    53 
    54   license_name = db.StringProperty(required=True, choices=licenses.LICENSES,
    54   license_name = db.StringProperty(required=True, choices=licenses.LICENSES,
    55       verbose_name=ugettext('What license does your organization use?'))
    55       verbose_name=ugettext('What license does your organization use?'))
    56   license_name.example_text=ugettext('See '
    56   license_name.example_text=ugettext('See '
    57       '<a href="http://www.opensource.org/licenses/alphabetical"> the official list</a>.')
    57       '<a href="http://www.opensource.org/licenses/alphabetical"> the official list</a>.')
    58  
    58 
    59   ideas = db.LinkProperty(required=True, verbose_name=ugettext(
    59   ideas = db.LinkProperty(required=True, verbose_name=ugettext(
    60       'What is the URL to the ideas list of your organization?'))
    60       'What is the URL to the ideas list of your organization?'))
    61   ideas.help_text = ugettext('For instance a link to a Melange public '
    61   ideas.help_text = ugettext('For instance a link to a Melange public '
    62       'document or some other URL')
    62       'document or some other URL')
    63 
    63 
    64   dev_mailing_list = db.StringProperty(required=False, verbose_name=ugettext(
    64   dev_mailing_list = db.StringProperty(required=True, verbose_name=ugettext(
    65       'What is the main development mailing list for your group?'))
    65       'What is the main development mailing list for your group?'))
    66   dev_mailing_list.help_text = ugettext(
    66   dev_mailing_list.help_text = ugettext(
    67       'Mailing list email address, URL to sign-up page, etc.')
    67     'Mailing list email address, URL to sign-up page, etc. If a mailing '
       
    68     'list is not used please specify another method of communication used '
       
    69     'within the group.')
    68 
    70 
    69   contrib_template = db.LinkProperty(required=False, verbose_name=ugettext(
    71   contrib_template = db.LinkProperty(required=False, verbose_name=ugettext(
    70       'What is the URL to the application template would you like contributors'
    72       'What is the URL to the application template would you like contributors'
    71       ' to your organization to use.'))
    73       ' to your organization to use.'))
    72   contrib_template.help_text = ugettext(
    74   contrib_template.help_text = ugettext(