{% extends 'esign/base.html' %} {% block content %}
| # | Title | Total Signers | Signed | Pending | Status | Actions |
|---|---|---|---|---|---|---|
| {{ forloop.counter }} | {{ d.title }} | {{ flows|length }} | {# Signed Users with merged_file links #}{% for f in flows %} {% if f.is_signed %} {% if f.merged_file %} {{ f.recipient_email }}{% if not forloop.last %}, {% endif %} {% else %} {{ f.recipient_email }}{% if not forloop.last %}, {% endif %} {% endif %} {% endif %} {% empty %} None {% endfor %} | {# Pending Users #}{% for f in flows %} {% if not f.is_signed %} {{ f.recipient_email }}{% if not forloop.last %}, {% endif %} {% endif %} {% empty %} None {% endfor %} | {# Status Column #}{% if d.all_signed %} Complete {% else %} Pending {% endif %} | {# Actions Column Updated #}
{# Download Dropdown #}
|
No documents yet.
{% endif %} {% endblock %}