{# 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 %}{{ t('media.title') }} - {{ t('app.name') }}{% endblock %} {% block content %}

{{ t('media.title') }} {% if total %} {{ total }} {% endif %}

{{ t('media.csv_export') }}

{{ media_stats.total_media_files or 0 }}

{{ t('media.total_files') }}

{{ media_stats.total_media_size_formatted or '0 B' }}

{{ t('media.total_size') }}

{{ media_stats.users_with_media or 0 }}

{{ t('media.users_with_media') }}

Filters & Search
{% if users %}
{% for user in users %}
{{ user.user_id }}
{% if user.display_name %}
{{ user.display_name }}
{% endif %}
Media Files
{{ user.media_count }}
Storage Used
{{ user.media_length_formatted }}
{% endfor %}
{% else %}
{{ t('media.no_media_found', default='No users with media found') }}
{% if search %}

{{ t('messages.try_different_search') }}

{{ t('forms.show_all') }} {% endif %}
{% 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 %}