{% extends "portal_base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Document Management" %}{% endblock %} {% block content %}

{% trans "Document Management" %}

{% for document in documents %} {% empty %} {% endfor %}
{% trans "Document Type" %} {% trans "Description" %} {% trans "File Name" %} {% trans "Size" %} {% trans "Uploaded" %} {% trans "Actions" %}
{{ document.get_document_type_display }} {{ document.description|default:"-" }} {% if document.file %} {{ document.file.name|truncatechars:30 }} {% else %} - {% endif %} {% if document.file %} {{ document.file.size|filesizeformat }} {% else %} - {% endif %} {{ document.created_at|date:"M d, Y" }}
{% if document.file %} {% endif %}
{% trans "No documents uploaded yet." %}
{% endblock %}