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

{{ object.title }} Consent Form Details

Form Content

{{ object.content|safe }}

Form Information

Status: {{ object.get_status_display }}
Category: {{ object.get_category_display }}
Required: {% if object.is_required %} Required {% else %} Optional {% endif %}
Version: v{{ object.version }}
Created: {{ object.created_at|date:"M d, Y H:i" }}
Updated: {{ object.updated_at|date:"M d, Y H:i" }}
Created By: {{ object.created_by.get_full_name }}

Usage Statistics

{{ object.signed_count }}
Signed
{{ object.pending_count }}
Pending

Quick Actions

Edit Form {% if object.status == 'DRAFT' %} {% elif object.status == 'ACTIVE' %} {% endif %} Delete Form
{% endblock %} {% block js %} {% endblock %}