{% extends "base.html" %} {% load static %} {% block title %}Patient Consents - Patients{% endblock %} {% block content %}
|
|
Patient | Consent Form | Status | Requested | Signed | Expires | Signed By | Actions |
|---|---|---|---|---|---|---|---|---|
|
|
{{ consent.patient.patient_id }}
{{ consent.patient.date_of_birth|date:"M d, Y" }}
|
{{ consent.consent_form.get_category_display }}
{% if consent.consent_form.is_required %}
Required
{% endif %}
v{{ consent.consent_form.version }}
|
{% if consent.is_urgent %}
Urgent {% endif %} {% if consent.is_expiring_soon %} Expiring Soon {% endif %} |
{{ consent.requested_at|date:"M d, Y" }}
{{ consent.requested_at|time:"H:i" }}
by {{ consent.requested_by.get_full_name|default:"System" }}
|
{% if consent.signed_at %}
{{ consent.signed_at|date:"M d, Y" }}
{{ consent.signed_at|time:"H:i" }}
|
{% if consent.expires_at %}
{{ consent.expires_at|date:"M d, Y" }}
{% if consent.is_expired %}
Expired
{% elif consent.is_expiring_soon %}
Expiring Soon
{% endif %}
|
{% if consent.signed_by %}
{{ consent.signed_by.get_full_name }}
{{ consent.signed_by.relationship|default:"Patient" }}
{% if consent.witness %}
Witness: {{ consent.witness.get_full_name }}
{% endif %}
|
|
No patient consents foundRequest your first patient consent to get started. |
||||||||