{% extends "layout.html" %} {% block content %}
| Name | Category | Type | Size | Uploaded | Visibility | Actions |
|---|---|---|---|---|---|---|
|
{% if doc.file_type == 'pdf' %}
{% elif doc.file_type == 'document' %}
{% elif doc.file_type == 'spreadsheet' %}
{% elif doc.file_type == 'image' %}
{% elif doc.file_type == 'video' %}
{% else %}
{% endif %}
{{ doc.custom_filename }}
|
{{ doc.category|capitalize }} | {{ doc.file_type|capitalize }} | {{ (doc.file_size / 1024)|round(1) }} KB | {{ doc.created_at.split(' ')[0] }} | {% if doc.visibility == 'public' %} Public {% else %} Private {% endif %} | |
|
{% if search_query %}
No documents found matching your search criteria.
{% elif selected_category != 'all' %}
No documents found in the selected category.
{% else %}
No documents found. Upload your first document to get started!
{% endif %}
|
||||||