{% extends "admin/layout.html" %} {% block title %}User Files – Admin{% endblock %} {% block body %}

{% trans %}User Files{% endtrans %}

{% trans %}View all users' conversion files and manage their share links and access grants.{% endtrans %} {{ total }} {% trans %}total{% endtrans %}.

{% if search %} {% trans %}Clear{% endtrans %} {% endif %}
{% if files %}
{% for f in files %} {% if f.job_id %} {% endif %} {% endfor %}
{% trans %}File{% endtrans %} {% trans %}Owner{% endtrans %} {% trans %}Format{% endtrans %} {% trans %}Status{% endtrans %} {% trans %}Shares{% endtrans %} {% trans %}Date{% endtrans %} {% trans %}Details{% endtrans %}
{{ f.file_name or f.orig_file_name or _('Unnamed') }}
{% if f.orig_file_size %}
{{ (f.orig_file_size / 1048576)|round(1) }} MB
{% endif %}
{% if f.user_email %}
{{ f.user_username or f.user_email }}
{{ f.user_email }}
{% else %} {% trans %}Anonymous{% endtrans %} {% endif %}
{% if f.input_format %}{{ f.input_format }}{% endif %} {% if f.input_format and f.output_format %}{% endif %} {% if f.output_format %}{{ f.output_format }}{% endif %}
{{ f.status }}
{% if f.share_link_count and f.share_link_count > 0 %} {{ f.share_link_count }} {% endif %} {% if f.grant_count and f.grant_count > 0 %} {{ f.grant_count }} {% endif %} {% if (not f.share_link_count or f.share_link_count == 0) and (not f.grant_count or f.grant_count == 0) %} {% trans %}None{% endtrans %} {% endif %}
{{ f.created_at[:10] if f.created_at else '—' }} {% if f.job_id %} {% endif %}
{% else %}

{% if search %}{% trans %}No files match your search.{% endtrans %}{% else %}{% trans %}No files found.{% endtrans %}{% endif %}

{% endif %}
{% if total_pages > 1 %}
{% trans %}Page{% endtrans %} {{ page }} {% trans %}of{% endtrans %} {{ total_pages }}
{% if page > 1 %} ← {% trans %}Prev{% endtrans %} {% endif %} {% if page < total_pages %} {% trans %}Next{% endtrans %} → {% endif %}
{% endif %} {% endblock %} {% block page_scripts %} {% endblock %}