{# letter_researcher_approve.html #} {% extends 'base_pdf_letter.html' %} {% comment %} template parameters: consent_mode: ConsentMode contact_request: ContactRequest patient_lookup: PatientLookup study: Study permitted_to_contact_discharged_patients_for_n_days: int permitted_to_contact_discharged_patients_for_n_years: str RDBM_ADDRESS: List[str] {% endcomment %} {% block letter_body %}

APPROVAL FOR RESEARCHER TO CONTACT PATIENT DIRECTLY

On {{ contact_request.created_at|date:"j F Y" }} you provided us with a list of research IDs and requested patient contact details for your study:

{% include 'study_table.html' with study=study contact_request=contact_request %}

The following patient has given his/her consent for his details to be passed to you. You may write to this patient, providing details of your study, and seeking further contact. You also have their permission to access their CPFT medical records.

{% include "patient_table.html" with patient_lookup=patient_lookup consent_mode=consent_mode include_prefers_email=True include_sex=True include_researcher_detail=True permitted_to_contact_discharged_patients_for_n_days=permitted_to_contact_discharged_patients_for_n_days permitted_to_contact_discharged_patients_for_n_years=permitted_to_contact_discharged_patients_for_n_years %}

If you indicated in your application that you preferred the request to be passed on to the patient’s clinician and enclosed a form for the clinician to complete, then the patient consented to disclosing the information on that form to you, and the completed form is enclosed.

{% comment %}

If this study conflicts with the patient’s special requests, DO NOT contact this patient UNLESS they were asked specifically about your study. It’s up to you to judge this.

{% endcomment %}

You are reminded of the following. (1) Information hiding:

(2) About this patient:

(3) Next:

Thank you.

{% endblock %}