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

File Records

{% if error %}

Error: {{ error }}

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

{% endif %}
Loading...
{% for file in files %}

{{ file.original_filename }}

ID: {{ file.id }} · {{ (file.file_size / 1024) | round(2) }} KB

{{ file.mime_type }}

{{ file.created_at.strftime('%Y-%m-%d %H:%M') if file.created_at else 'N/A' }}

{{ file.processing_status | title }}
{% else %}

No files found

{% endfor %}
{% if pagination.pages > 1 %} {% endif %}
{% endblock %}