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

Document Management

{% for document in documents %} {% empty %} {% endfor %}
Document Type Description File Name Size Uploaded 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 %}
No documents uploaded yet.
{% endblock %}