{% extends "dashboard/layout.html" %} {% block title %}{{ _('My Files – OnlineConvert') }}{% endblock %} {% set active_page = 'files' %} {% block dashboard_content %}

{{ _('My Files') }}

{{ _('All your conversions — download originals, view converted files, or delete them.') }}

{% if files %}
{{ total }} {{ _('file') if total == 1 else _('files') }}
{% for f in files %}
{{ f.file_name or f.orig_file_name or _('Unnamed') }}
{{ f.input_format or '?' }} {{ f.output_format or '?' }} {% if f.orig_file_size %}{{ (f.orig_file_size / 1048576)|round(1) }} MB{% endif %} {{ f.status }} {% if f.status != 'deleted' and not f.upload_id %}{{ _('Upload deleted') }}{% endif %} {% if f.status not in ['deleted','expired','cancelled'] and f.upload_id and not f.output_path %}{{ _('Output deleted') }}{% endif %} {% if f.share_count and f.share_count > 0 %} {{ _('Shared') }} ({{ f.share_count }}){% endif %}
{{ f.created_at[:10] if f.created_at else '' }} {% if f.orig_file_path and f.status != 'deleted' %} {{ _('Original') }} {% endif %} {% if f.job_id and f.status not in ['deleted', 'expired'] %} {{ _('Converted') }} {% endif %} {% if f.job_id and f.status not in ['deleted'] %} {% endif %} {% if f.status != 'deleted' %}
{% endif %}
{% endfor %}
{% if total_pages > 1 %}
{{ _('Page %(page)s of %(total)s', page=page, total=total_pages) }}
{% if page > 1 %}← {{ _('Prev') }}{% endif %} {% if page < total_pages %}{{ _('Next') }} →{% endif %}
{% endif %} {% else %}

{{ _('No files yet.') }}

{{ _('Convert a file') }} →
{% endif %}
{% if shared_with_me %}
{{ _('Shared with me') }} {{ shared_with_me|length }} {{ _('file') if shared_with_me|length == 1 else _('files') }}
{% for sw in shared_with_me %}
{{ sw.file_name or _('Unnamed file') }}
{{ sw.input_format or '?' }} {{ sw.output_format or '?' }} {{ _('Shared by') }} {{ sw.shared_by_name or sw.shared_by_email }}
{{ sw.granted_at[:10] if sw.granted_at else '' }} {{ _('View') }}
{% endfor %}
{% endif %} {# Share management panel modal #} {% endblock %}