{% extends 'esign/base.html' %} {% block content %}

Documents

Upload Document
{% if documents %} {% for d in documents %} {% with flows=d.sign_flow.all %} {# Signed Users with merged_file links #} {# Pending Users #} {# Status Column #} {# Actions Column Updated #} {% endwith %} {% endfor %}
# Title Total Signers Signed Pending Status Actions
{{ forloop.counter }} {{ d.title }} {{ flows|length }} {% 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 %} {% for f in flows %} {% if not f.is_signed %} {{ f.recipient_email }}{% if not forloop.last %}, {% endif %} {% endif %} {% empty %} None {% endfor %} {% if d.all_signed %} Complete {% else %} Pending {% endif %} {# Download Dropdown #}
{% csrf_token %}
{% else %}

No documents yet.

{% endif %} {% endblock %}