{% load i18n %}
{{ c.forenames }} {{ c.surname }}
{% if not c.hide_contact_details %}
{% if c.email %}
{% trans "Email" %}: {{ c.email }}
{% endif %}
{% if not service_form.hide_contact_details %}
{% if c.phone_number %}
{% trans "Phone" %}: {{ c.phone_number }}
{% endif %}
{% if c.address %}
{% trans "Address" %}:
{{ c.address|linebreaksbr }}
{% endif %}
{% endif %}
{% endif %}