Format organisation type nicely in go live requests

This commit is contained in:
Chris Hill-Scott
2021-10-11 14:08:42 +01:00
parent 84195d36af
commit dd573fec87
2 changed files with 3 additions and 3 deletions

View File

@@ -232,7 +232,7 @@ def submit_request_to_go_live(service_id):
).format(
service_name=current_service.name,
service_dashboard=url_for('main.service_dashboard', service_id=current_service.id, _external=True),
organisation_type=str(current_service.organisation_type).title(),
organisation_type=current_service.organisation_type_label,
agreement=current_service.organisation.as_agreement_statement_for_go_live_request(
current_user.email_domain
),