21 lines
942 B
Plaintext
21 lines
942 B
Plaintext
{% load i18n %}{% trans "CONSENT FORM SIGNED SUCCESSFULLY" %}
|
|
{{ clinic_name }}
|
|
|
|
{% blocktrans with name=signed_by_name %}Dear {{ name }},{% endblocktrans %}
|
|
|
|
{% blocktrans with patient=patient.full_name_en %}Thank you for signing the consent form for {{ patient }}.{% endblocktrans %}
|
|
|
|
{% trans "CONSENT DETAILS:" %}
|
|
- {% trans "Patient" %}: {{ patient.full_name_en }}
|
|
- {% trans "MRN" %}: {{ patient.mrn }}
|
|
- {% trans "Signed by" %}: {{ signed_by_name }}
|
|
- {% trans "Signed on" %}: {{ signed_at|date:"F d, Y" }} {% trans "at" %} {{ signed_at|date:"g:i A" }}
|
|
- {% trans "Consent Type" %}: {{ consent.get_consent_type_display }}
|
|
|
|
{% trans "A copy of this consent has been securely recorded in our system." %}
|
|
|
|
{% blocktrans with clinic=clinic_name %}If you have any questions, please contact {{ clinic }}.{% endblocktrans %}
|
|
|
|
---
|
|
{% blocktrans with clinic=clinic_name %}This is an automated confirmation from {{ clinic }}.{% endblocktrans %}
|