Merge pull request #2002 from alphagov/reword-agreement-download

[WIP] Reword the download agreement page
This commit is contained in:
Chris Hill-Scott
2018-04-09 11:12:08 +01:00
committed by GitHub
2 changed files with 19 additions and 10 deletions

View File

@@ -10,9 +10,14 @@ from app.utils import AgreementInfo
@main.route('/agreement')
@login_required
def agreement():
agreement_info = AgreementInfo.from_current_user()
agreement_info.crown_status_or_404
return render_template(
'views/agreement.html',
crown_status=AgreementInfo.from_current_user().crown_status_or_404,
owner=agreement_info.owner,
navigation_links=features_nav(),
)

View File

@@ -18,17 +18,21 @@
</h1>
<p>
This agreement needs to be signed by someone who has the authority to do so on behalf of your whole organisation. Typically this is a director of digital or head of finance.
Before you can go live on GOV.UK Notify, your organisation needs to agree to our data sharing and financial agreement.
</p>
<ol class="list list-number">
<li>
<a href="{{ url_for('main.download_agreement') }}">Download the agreement</a>.
</li>
<li>
Get it signed by someone who has the authority to do so on behalf of {{ owner }}. Typically this is a director of digital or head of finance.
</li>
<li>
Return the signed copy to <a href="mailto:notify-support@digital.cabinet-office.gov.uk">notify-support@digital.cabinet-office.gov.uk</a>.
</li>
</ol>
<p>
Return a signed copy to <span style="white-space: nowrap">notify-support@digital.cabinet-office.gov.uk</span>
</p>
<p class="panel panel-border-wide bottom-gutter-2-3">
The agreement contains commercially sensitive information.<br>
Do not share it more widely than you need to.
</p>
<p>
<a href="{{ url_for('main.download_agreement') }}">Download the agreement</a>.
The agreement contains commercially sensitive information, so dont share it more widely than you need to.
</p>
</div>