{% extends "esign/base.html" %} {% block content %} {% load custom_tags %}
| 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 %} |
|