{% extends "base.html" %} {% block title %}File Records{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

Drop files anywhere to upload

Supports PDF, Office docs, images, and more
Uploading Files

File Records

{% if error %}

Error: {{ error }}

This might be due to a configuration or import issue. Please check the server logs.

{% endif %}
{% for file in files %} {% else %} {% endfor %}
ID {% if sort_by == 'id' %} {% if sort_order == 'asc' %}▲{% else %}▼{% endif %} {% else %} ↕ {% endif %} Original Filename {% if sort_by == 'original_filename' %} {% if sort_order == 'asc' %}▲{% else %}▼{% endif %} {% else %} ↕ {% endif %} File Size {% if sort_by == 'file_size' %} {% if sort_order == 'asc' %}▲{% else %}▼{% endif %} {% else %} ↕ {% endif %} MIME Type {% if sort_by == 'mime_type' %} {% if sort_order == 'asc' %}▲{% else %}▼{% endif %} {% else %} ↕ {% endif %} Status Created At {% if sort_by == 'created_at' %} {% if sort_order == 'asc' %}▲{% else %}▼{% endif %} {% else %} ↕ {% endif %} Actions
{{ file.id }} {{ file.original_filename }} {{ (file.file_size / 1024) | round(2) }} KB {{ file.mime_type }} {{ file.processing_status | title }} {{ file.created_at.strftime('%Y-%m-%d %H:%M:%S') if file.created_at else 'N/A' }}
No files found
{% if pagination.total_pages > 1 %} {% endif %}
{% endblock %}