{% extends "base.html" %} {% set active_nav = "manage" %} {% block title %}Documents - LSMC Hub{% endblock %} {% block content %}
Clear
{% if documents and documents|length > 0 %} {% for doc in documents %} {% endfor %}
Filename EUID Type Size Linked To Created Actions
📄 {{ doc.filename }} {{ doc.id }} {{ doc.document_type or 'Unknown' }} {{ doc.size_bytes|filesizeformat if doc.size_bytes else '-' }} {% if doc.linked_entity %} {{ doc.linked_entity.type }}: {{ doc.linked_entity.label }} {% else %} Not linked {% endif %} {{ doc.created_at | format_dt(user_preferences) if doc.created_at else '-' }} View
{% else %}

No documents found

{% endif %}
{% endblock %}