{% extends "base.html" %} {% block title %}{{ _("files.page_title") }}{% endblock %} {% block head_extra %} {% endblock %} {% block content %}

{{ _("files.page_title") }}

{% if error %}

{{ _("common.error") }}: {{ error }}

{{ _("files.error_hint") }}

{% endif %}
{{ _("common.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 %}

{{ _("files.table_empty") }}

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