{% extends "base.html" %} {% load static %} {% block title %}Consent Management - {{ block.super }}{% endblock %} {% block content %}

Consent Management

{% for consent in consent_forms %} {% empty %} {% endfor %}
Patient Template Status Created Signed Actions
{{ consent.patient.get_full_name }}
MRN: {{ consent.patient.mrn }}
{{ consent.template.name }} {% if consent.status == 'PENDING' %} Pending {% elif consent.status == 'SIGNED' %} Signed {% elif consent.status == 'EXPIRED' %} Expired {% elif consent.status == 'REVOKED' %} Revoked {% endif %} {{ consent.created_at|date:"M d, Y H:i" }} {% if consent.patient_signed_at %} {{ consent.patient_signed_at|date:"M d, Y H:i" }} {% else %} Not signed {% endif %}
{% if consent.status == 'PENDING' %} {% endif %}
No consent forms found

No consent forms match your current filters.

{% if is_paginated %} {% endif %}
{% endblock %}