{% extends "portal/base.html" %} {% block title %}Documents — ClientPortal{% endblock %} {% block topbar_title %}Documents{% endblock %} {% block content %}
Documents
Review, sign, and download documents for your project.
All Documents
{{ documents|length }} document{{ documents|length|pluralize }} — {{ pending_count }} pending signature
{% for doc in documents %}
{{ doc.title }}
Added {{ doc.created_at|date:"d F Y" }}
{% if doc.deadline %}
{% if doc.is_overdue %}⚠ Overdue — {% endif %}Due {{ doc.deadline|date:"d M Y" }}
{% endif %}
{% if doc.signed %} ✓ Signed {% if doc.signed_by %} by {{ doc.signed_by }} · {{ doc.signed_at|date:"d M Y" }} {% endif %} {% else %} Pending Signature {% endif %}
{% if doc.file %} Download {% endif %} {% if doc.signed_file %} Download Signed {% endif %} {% if not doc.signed %} {% endif %}
{% empty %}

No documents yet.

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}