{# letter_patient_confirm_traffic.html #} {% extends 'base_pdf_letter.html' %} {% comment %} template parameters: # Letter bits address_from: List[str] address_to: List[str] salutation: str signatory_name: str signatory_title: str # Specific bits consent_mode: ConsentMode patient_lookup: PatientLookup settings: Django settings object # URLs red_img_url: str yellow_img_url: str green_img_url: str {% endcomment %} {% block letter_body %}
Confirming your choice about researchers contacting you
{% if consent_mode.changed_by_clinician_override %}Your clinician recently told us what we should do if any of our researchers would like to contact you directly about research. This letter is to confirm that choice.
The possible options were:
{% else %}You recently told us what we should do if any of our researchers would like to contact you directly about research. Thank you! This letter is to confirm your choice.
You were offered this choice:
{% endif %}
|
{% include "phrase_red.html" %} |
|
{% include "phrase_yellow.html" %} |
|
{% include "phrase_green.html" %} |
Your clinician told us we should use this option:
{% else %}You chose this option:
{% endif %}{{ consent_mode.consent_mode }}
We asked some other things, too:
We asked: | {% if consent_mode.changed_by_clinician_override %} Your clinician answered: {% else %} You answered: {% endif %} |
---|---|
Do you wish to opt out of the use of your information for research even after all details that could identify you have been removed? | {{ consent_mode.exclude_entirely|yesno }} |
Are you still willing to be contacted about research even after being discharged from CPFT entirely? | {{ consent_mode.consent_after_discharge|yesno }} |
Do you prefer to hear about research by e-mail? | {{ consent_mode.prefers_email|yesno }} |
... if so, we have your e-mail address as: | {{ patient_lookup.pt_email|default:"?" }} |
Do you wish to limit your consent in some way... | |
... such as an annual limit? | {{ consent_mode.max_approaches_per_year|default:"–" }} |
... or in some other way? | {{ consent_mode.other_requests|default:"–" }} |
If you are happy with the current choice, you don’t need to do anything.
{% else %}If you are happy with your current choice, you don’t need to do anything.
{% endif %}If you would like to change your choice, please complete another copy of the enclosed form (“Would you like to be contacted about research?”).
If you fill in any of the forms, please return them in the Freepost envelope (to {{ settings.RDBM_ADDRESS|join:", " }}), or give them to a member of staff at CPFT.
You may also speak to your health care professional at CPFT about these choices at any time.
Thank you!
{% endblock %}