Merge pull request #3060 from alphagov/agreement-new-content

Data sharing and financial agreement content
This commit is contained in:
Chris Hill-Scott
2019-07-19 16:43:16 +01:00
committed by GitHub
7 changed files with 43 additions and 37 deletions

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?',
'Who are you accepting the agreement for?',
choices=(
(
'me',
'Im accepting the agreement',
'Yourself',
),
(
'someone-else',
'Im accepting the agreement on behalf of someone else',
'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(