{% load i18n %} {% load static %}
{% if documents %}
{% for document in documents %}
{% if document.document %} {% if document.status == "approved" %} {% elif document.status == 'rejected' %} {% else %} {% endif %} {% else %} {% endif %}
{% trans "Title needs to be more than 3 letters" %}
{{document.document_request_id.description|truncatechars:60}} {% if document.issue_date %} {% trans "Issue Date" %} : {{ document.issue_date }} {% endif %}
{% if perms.horilla_document.change_documentrequest %} {% if document.status == "approved" %} {% else %} {% endif %} {% endif %} {% if not document.document_request_id or perms.horilla_document.change_documentrequest %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %}
No documents
{% trans "No documents have been uploaded yet." %}
{% endif %}