{# Project: EPT-MX-ADM Company: EasyProTech LLC (www.easypro.tech) Dev: Brabus Date: Thu 23 Oct 2025 22:41:32 UTC Status: Created Telegram: https://t.me/EasyProTech #} {% extends "base.html" %} {% block title %}{{ user_id }} Media - {{ t('app.name') }}{% endblock %} {% block content %}

{{ user_display_name or user_id }}

{{ user_id }}

Total storage
{{ media_data.total_size_formatted or '0 B' }}
Total files
{{ media_data.total_count or 0 }}
On this page
{{ media_data.files_on_page or 0 }} files / {{ media_data.size_on_page_formatted or '0 B' }}

{% if media_data.media %}
Media files {{ media_data.total_count or media_data.media|length }}
{% for media in media_data.media %} {% endfor %}
Media ID Type File Name Size Created Last Access Actions
{{ media.media_id }} {% if media.file_type %} {% if media.file_type == 'image' %} Image {% elif media.file_type == 'video' %} Video {% elif media.file_type == 'audio' %} Audio {% elif media.file_type == 'document' %} Document {% else %} Other {% endif %} {% else %} Unknown {% endif %} {{ media.upload_name or '-' }} {{ media.file_size_formatted or '0 B' }} {% if media.created_ts %} {{ media.created_ts | datetime_format }} {% else %} Unknown {% endif %} {% if media.last_access_ts %} {{ media.last_access_ts | datetime_format }} {% else %} Never {% endif %}
{% if media.is_quarantined %} Quarantined {% endif %}
{% else %}
No media files found

This user has no media files yet.

{% endif %} {% if total > 0 %}
{{ t('pagination.showing') }} {{ ((current_page - 1) * limit + 1) if total > 0 else 0 }} - {{ (current_page * limit) if (current_page * limit) < total else total }} {{ t('pagination.of') }} {{ total }} {{ t('pagination.entries') }}
{% if total_pages > 1 %} {% endif %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}