{% extends 'base.html' %} {% block page_title %}Documents{% endblock %} {% block content %}

Document Management

Store and manage organisation documents

{% if filter_category %} Clear {% endif %}
{% for doc in documents %} {% else %} {% endfor %}
Document Category Project Uploaded By Size Date Actions
{% if doc.original_filename.endswith('.pdf') %}📄 {% elif doc.original_filename.endswith(('.doc','.docx')) %}📝 {% elif doc.original_filename.endswith(('.xls','.xlsx')) %}📊 {% elif doc.original_filename.endswith(('.jpg','.jpeg','.png')) %}🖼️ {% else %}📁{% endif %}
{{ doc.name }}
{% if doc.description %}
{{ doc.description[:50] }}{% if doc.description|length > 50 %}…{% endif %}
{% endif %}
{{ doc.category.title() }} {% if doc.project_id %} {% for p in projects %}{% if p.id == doc.project_id %}{{ p.name[:25] }}{% endif %}{% endfor %} {% else %}—{% endif %} {{ doc.uploaded_by or '—' }} {{ doc.file_size_display }} {{ doc.created_at.strftime('%d %b %Y') }} {% if current_user.is_admin() %}
{% endif %}

No documents yet

Upload your first document using the button above

{% endblock %}