{% 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 %}
{% for file in files %} {% else %} {% endfor %}
ID Original Filename File Size Mime Type Created At Actions
{{ file.id }} {{ file.original_filename }} {{ (file.file_size / 1024) | round(2) }} KB {{ file.mime_type }} {{ file.created_at }}
No files found
{% endblock %}