app/soc/models/org_app.py
changeset 1628 276e8e72c874
parent 1566 5388270fb363
child 1869 9552c2499201
equal deleted inserted replaced
1627:425dccf4f652 1628:276e8e72c874
    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"> '
       
    58       'the official list</a>.')
    58 
    59 
    59   ideas = db.LinkProperty(required=True, verbose_name=ugettext(
    60   ideas = db.LinkProperty(required=True, verbose_name=ugettext(
    60       'What is the URL to the ideas list of your organization?'))
    61       'What is the URL to the ideas list of your organization?'))
    61   ideas.help_text = ugettext('For instance a link to a Melange public '
    62   ideas.help_text = ugettext('For instance a link to a Melange public '
    62       'document or some other URL')
    63       'document or some other URL')
    94   continued_contribs = db.TextProperty(required=True, verbose_name=ugettext(
    95   continued_contribs = db.TextProperty(required=True, verbose_name=ugettext(
    95       'What will you do to ensure that your accepted contributors stick'
    96       'What will you do to ensure that your accepted contributors stick'
    96       ' with the project after the program concludes?'))
    97       ' with the project after the program concludes?'))
    97   continued_contribs.help_text = contrib_disappears.help_text
    98   continued_contribs.help_text = contrib_disappears.help_text
    98 
    99 
    99   #: field storing whether the User has agreed to the site-wide Terms of Service.
   100   #: field storing whether the User has agreed to the site-wide 
   100   #: (Not a required field because the Terms of Service might not be present
   101   #: Terms of Service. (Not a required field because the Terms of 
   101   #: when the first User profile is created when bootstrapping the site.)
   102   #: Service might not be present when the first User profile is 
       
   103   #: created when bootstrapping the site.)
   102   agreed_to_admin_agreement = db.BooleanProperty(required=False, default=False,
   104   agreed_to_admin_agreement = db.BooleanProperty(required=False, default=False,
   103       verbose_name=ugettext('I Agree to the Admin Agreement'))
   105       verbose_name=ugettext('I Agree to the Admin Agreement'))
   104   agreed_to_admin_agreement.help_text = ugettext(
   106   agreed_to_admin_agreement.help_text = ugettext(
   105       'Indicates whether the user agreed to the Admin Agreement.')
   107       'Indicates whether the user agreed to the Admin Agreement.')