{% extends "base.html" %} {% load static %} {% block title %}Patient Consents - Patients{% endblock %} {% block content %}

Patient Consents Manage signed consent forms and signatures

Patient Consent Management

{{ total_consents }}
Total Consents
{{ signed_consents }}
Signed
{{ pending_consents }}
Pending
{{ expired_consents }}
Expired
0 consent(s) selected
{% for consent in object_list %} {% empty %} {% endfor %}
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 }}
{{ consent.get_status_display }} {% 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" }}
{% else %} Not signed {% endif %}
{% if consent.expires_at %}
{{ consent.expires_at|date:"M d, Y" }}
{% if consent.is_expired %}
Expired
{% elif consent.is_expiring_soon %}
Expiring Soon
{% endif %}
{% else %} No expiration {% 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 %}
{% else %} Not signed {% endif %}
{% if consent.status == 'PENDING' %} {% endif %}
No patient consents found

Request your first patient consent to get started.

{% if is_paginated %}
Showing {{ page_obj.start_index }} to {{ page_obj.end_index }} of {{ page_obj.paginator.count }} consents
{% endif %}
{% endblock %} {% block js %} {% endblock %}