{% 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 perms.horilla_document.change_documentrequest %} {% if document.status == "approved" %} {% else %} {% endif %} {% endif %}
{% csrf_token %}
{% endfor %}
{% else %}
No documents
{% trans "No documents have been uploaded yet." %}
{% endif %}