Update agreement form content

Update agreement form content
This commit is contained in:
karlchillmaid
2019-07-18 10:46:01 +01:00
committed by GitHub
parent 505c17f5f0
commit 95f9215546

View File

@@ -1487,26 +1487,26 @@ class AcceptAgreementForm(StripWhitespaceForm):
)
version = StringField(
'Which version of the agreement are you accepting?'
'Which version of the agreement do you want to accept?'
)
who = RadioField(
'Who is accepting the agreement?',
'How do you want to accept the agreement?',
choices=(
(
'me',
'Im accepting the agreement',
'In your own name',
),
(
'someone-else',
'Im accepting the agreement on behalf of someone else',
'On behalf of someone else',
),
),
validators=[DataRequired()],
)
on_behalf_of_name = StringField(
'Who are you accepting the agreement on behalf of?'
'Whats their name?'
)
on_behalf_of_email = email_address(