2021-10-11 15:45:26 +01:00
|
|
|
|
{% set service = current_service -%}
|
|
|
|
|
|
{% set organisation = service.organisation -%}
|
|
|
|
|
|
{% set user = current_user -%}
|
|
|
|
|
|
|
|
|
|
|
|
Service: {{ service.name }}
|
|
|
|
|
|
{{ url_for('main.service_dashboard', service_id=service.id, _external=True) }}
|
2021-10-11 14:15:25 +01:00
|
|
|
|
|
|
|
|
|
|
---
|
2021-10-11 15:45:26 +01:00
|
|
|
|
Organisation type: {{ service.organisation_type_label }}
|
|
|
|
|
|
Agreement signed: {{ organisation.agreement_signed|format_yes_no(none='Can’t tell') }}
|
2021-10-11 16:24:41 +01:00
|
|
|
|
{%- if organisation.agreement_signed %}, for {{ current_service.organisation.name }}
|
2021-10-11 15:45:26 +01:00
|
|
|
|
{%- elif organisation.name %} (organisation is {{ organisation.name }}, {{ organisation.crown|format_yes_no(yes='a crown body', no='a non-crown body', none='crown status unknown') }})
|
|
|
|
|
|
{%- else %} (domain is {{ user.email_domain }})
|
2021-10-11 15:42:29 +01:00
|
|
|
|
{%- endif %}.
|
2021-10-11 15:45:26 +01:00
|
|
|
|
{%- if organisation.request_to_go_live_notes %} {{ organisation.request_to_go_live_notes }}{% endif %}
|
|
|
|
|
|
{%- if organisation.agreement_signed_by %}
|
|
|
|
|
|
Agreement signed by: {{ organisation.agreement_signed_by.email_address }}
|
2021-10-11 14:58:28 +01:00
|
|
|
|
{% endif -%}
|
2021-10-11 15:45:26 +01:00
|
|
|
|
{%- if organisation.agreement_signed_on_behalf_of_email_address -%}
|
|
|
|
|
|
Agreement signed on behalf of: {{ organisation.agreement_signed_on_behalf_of_email_address }}
|
2021-10-11 14:58:28 +01:00
|
|
|
|
{%- endif %}
|
2021-10-11 14:15:25 +01:00
|
|
|
|
|
2021-10-11 15:45:26 +01:00
|
|
|
|
Emails in next year: {{ service.volume_email|format_thousands }}
|
|
|
|
|
|
Text messages in next year: {{ service.volume_sms|format_thousands }}
|
|
|
|
|
|
Letters in next year: {{ service.volume_letter|format_thousands }}
|
2021-10-11 14:15:25 +01:00
|
|
|
|
|
2021-10-11 15:45:26 +01:00
|
|
|
|
Consent to research: {{ service.consent_to_research|format_yes_no }}
|
|
|
|
|
|
Other live services for that user: {{ user.live_services|format_yes_no }}
|
2021-10-11 14:15:25 +01:00
|
|
|
|
|
2021-10-11 15:45:26 +01:00
|
|
|
|
Service reply-to address: {{ service.default_email_reply_to_address or "not set" }}
|
2021-10-11 14:15:25 +01:00
|
|
|
|
|
|
|
|
|
|
---
|
2021-12-10 10:13:23 +00:00
|
|
|
|
Request sent by {{ user.email_address }}
|
|
|
|
|
|
Requester’s user page: {{ url_for('main.user_information', user_id=user.id, _external=True) }}
|