# HG changeset patch # User Sverre Rabbelier # Date 1234396481 0 # Node ID c17e47db48752cf91d97ad8cd1e830bbc442d09a # Parent 3bd4a3b527d7c3a56f8e6c3c822b01d8f4c6da23 Added an agreed_to_admin_agreement property Patch by: Sverre Rabbelier diff -r 3bd4a3b527d7 -r c17e47db4875 app/soc/models/org_app.py --- a/app/soc/models/org_app.py Wed Feb 11 23:52:11 2009 +0000 +++ b/app/soc/models/org_app.py Wed Feb 11 23:54:41 2009 +0000 @@ -91,3 +91,11 @@ 'What will you do to ensure that your accepted contributors stick' ' with the project after the program concludes?')) continued_contribs.help_text = contrib_disappears.help_text + + #: field storing whether the User has agreed to the site-wide Terms of Service. + #: (Not a required field because the Terms of Service might not be present + #: when the first User profile is created when bootstrapping the site.) + agreed_to_admin_agreement = db.BooleanProperty(required=False, default=False, + verbose_name=ugettext('I Agree to the Admin Agreement')) + agreed_to_admin_agreement.help_text = ugettext( + 'Indicates whether the user agreed to the Admin Agreement.')