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

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

{{ t('users.csv_export') }}
{{ t('users.create_user') }}
Filters & Search
{% if users %}
{% for user in users %}
{{ user.displayname or user.name.split(':')[0][1:] }}
{{ user.name }}
{% if user.admin %} {{ t('users.admin') }} {% else %} {{ t('forms.user') }} {% endif %} {% if user.deactivated %} {{ t('users.deactivated') }} {% else %} {{ t('users.active') }} {% endif %}
{% if user.creation_ts %}
{{ user.creation_ts | datetime_format }}
{% endif %} {% if user.media_count is defined %}
{{ user.media_size_human }} ({{ user.media_count }} files)
{% endif %}
{% endfor %}
{% else %}
{{ t('users.no_users') }}
{% if search %}

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

{% endif %}
{% endif %} {% if total > 0 %}
{{ t('pagination.showing') }} {{ ((current_page - 1) * limit + 1) if users 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 %}