{% extends "esign/base.html" %} {% block content %} {% load custom_tags %} eSign - Dashboard {% if messages %}
{% for message in messages %} {% if forloop.last %} {% endif %} {% endfor %}
{% endif %}

Documents List

{% for d in documents %} {% with flows=d.sign_flow.all %} {% endwith %} {% endfor %}
S. No. Document Title Category Signers Completed Sign Pending Created at Link Expired Date Final Status Action
{{ forloop.counter }} {{ d.title }} {{ d.category }} {% for f in flows %} {% if f.is_signed %} {{ f.recipient_email|slice:":1"|upper }} {% endif %} {% empty %} N/A {% endfor %} {% for f in flows %} {% if not f.is_signed %} {{ f.recipient_email|slice:":1"|upper }} {% endif %} {% empty %} N/A {% endfor %} {{ d.created_at }} {{ d.valid_until|date:"b d, Y"|title }} Midnight {% if flows|has_pending %} Pending {% else %} Complete {% endif %}
{% csrf_token %}
Showing {{ documents.start_index }} to {{ documents.end_index }} of {{ documents.paginator.count }} entries
{% endblock %}