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

Consent Forms Manage consent form templates and requirements

Consent Forms Management

{{ total_forms }}
Total Forms
{{ active_forms }}
Active Forms
{{ pending_review_forms }}
Pending Review
{{ required_forms }}
Required Forms
0 form(s) selected
{% for form in object_list %} {% empty %} {% endfor %}
Form Details Category Status Required Version Usage Last Updated Actions
{{ form.description|truncatechars:60 }}
{% if form.is_required %} Required {% endif %} {% if form.has_expiration %} Expires {% endif %}
{{ form.get_category_display }} {{ form.get_status_display }} {% if form.status == 'REVIEW' %}
Since {{ form.review_date|date:"M d" }} {% endif %}
{% if form.is_required %} Required {% else %} Optional {% endif %} v{{ form.version }} {% if form.has_newer_version %}
Update available {% endif %}
{{ form.usage_count }} signed
{{ form.pending_count }} pending
{{ form.updated_at|date:"M d, Y" }}
{{ form.updated_at|time:"H:i" }}
by {{ form.updated_by.get_full_name|default:"System" }}
No consent forms found

Create your first consent form to get started.

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