app/soc/models/org_app.py
changeset 1272 c17e47db4875
parent 1231 ab19a8ad375f
child 1307 091a21cf3627
equal deleted inserted replaced
1271:3bd4a3b527d7 1272:c17e47db4875
    89 
    89 
    90   continued_contribs = db.TextProperty(required=True, verbose_name=ugettext(
    90   continued_contribs = db.TextProperty(required=True, verbose_name=ugettext(
    91       'What will you do to ensure that your accepted contributors stick'
    91       'What will you do to ensure that your accepted contributors stick'
    92       ' with the project after the program concludes?'))
    92       ' with the project after the program concludes?'))
    93   continued_contribs.help_text = contrib_disappears.help_text
    93   continued_contribs.help_text = contrib_disappears.help_text
       
    94 
       
    95   #: field storing whether the User has agreed to the site-wide Terms of Service.
       
    96   #: (Not a required field because the Terms of Service might not be present
       
    97   #: when the first User profile is created when bootstrapping the site.)
       
    98   agreed_to_admin_agreement = db.BooleanProperty(required=False, default=False,
       
    99       verbose_name=ugettext('I Agree to the Admin Agreement'))
       
   100   agreed_to_admin_agreement.help_text = ugettext(
       
   101       'Indicates whether the user agreed to the Admin Agreement.')