{% set service = current_service -%}
{% set organization = service.organization -%}
{% set user = current_user -%}

Service: {{ service.name }}
{{ url_for('main.service_dashboard', service_id=service.id, _external=True) }}

---
Organization type: {{ service.organization_type_label }}
{%- if organization.name %} (organization is {{ organization.name }})
{%- else %} (domain is {{ user.email_domain }})
{%- endif %}.
{%- if organization.request_to_go_live_notes %} {{ organization.request_to_go_live_notes }}{% endif %}
{%- if organization.agreement_signed_by %}
Agreement signed by: {{ organization.agreement_signed_by.email_address }}
{% endif -%}
{%- if organization.agreement_signed_on_behalf_of_email_address -%}
Agreement signed on behalf of: {{ organization.agreement_signed_on_behalf_of_email_address }}
{%- endif %}

Emails in next year: {{ service.volume_email|format_thousands }}
Text messages in next year: {{ service.volume_sms|format_thousands }}

Consent to research: {{ service.consent_to_research|format_yes_no }}
Other live services for that user: {{ user.live_services|format_yes_no }}

Service reply-to address: {{ service.default_email_reply_to_address or "not set" }}

---
Request sent by {{ user.email_address }}
Requester’s user page: {{ url_for('main.user_information', user_id=user.id, _external=True) }}
