# HG changeset patch # User Todd Larsen # Date 1232493183 0 # Node ID 9767c1afe494150231e185d592996b0399d56dac # Parent 3d14b31e72e4770f623664538b9b3b0a012ac0bd If a site-wide ToS exist, display the User profile "Agrees to ToS" checkbox. Patch by: Todd Larsen Review by: to-be-reviewed diff -r 3d14b31e72e4 -r 9767c1afe494 app/soc/templates/soc/user/edit_self.html --- a/app/soc/templates/soc/user/edit_self.html Tue Jan 20 23:01:24 2009 +0000 +++ b/app/soc/templates/soc/user/edit_self.html Tue Jan 20 23:13:03 2009 +0000 @@ -56,6 +56,20 @@   +{% if tos_link %} + {% field_as_table_row form.agrees_to_tos %} + + +In order to participate on this site, you must agree to the +site-wide Terms of Service.

+(There may also be additional Terms of Service specific to participation +in certain Programs or Groups. Those are agreed to elsewhere on the site, +when signing up for the specific participation Roles.) + + +   +{% endif %} + diff -r 3d14b31e72e4 -r 9767c1afe494 app/soc/views/models/user_self.py --- a/app/soc/views/models/user_self.py Tue Jan 20 23:01:24 2009 +0000 +++ b/app/soc/views/models/user_self.py Tue Jan 20 23:13:03 2009 +0000 @@ -176,8 +176,9 @@ new_link_id = form.cleaned_data.get('link_id') properties = { 'link_id': new_link_id, - 'name': form.cleaned_data.get("name"), + 'name': form.cleaned_data.get('name'), 'account': account, + 'agrees_to_tos': form.cleaned_data.get('agrees_to_tos'), } # check if user account is not in former_accounts