{{ _('users_title') }}
| # | {{ _('users_fullname') or 'Ad Soyad' }} | {{ _('email') or 'E-posta' }} | {{ _('company') or 'Şirket' }} | {{ _('user_type') or 'Kullanıcı Tipi' }} | {{ _('access_methods') or 'Erişim Yöntemleri' }} | {{ _('authorized_devices') or 'Yetkili Cihazlar' }} | {{ _('status') or 'Durum' }} | {{ _('actions') or 'İşlemler' }} |
|---|---|---|---|---|---|---|---|---|
| {{ loop.index }} |
{% if user.profile_image %}
{% if user.profile_image[0] == '@' %}
{% set imgfile = user.profile_image[1:] %}
{{ user.full_name or '-' }}
{% if user.phone %}
{{ user.phone }} {% endif %} |
{{ user.email or '-' }} | {{ user.company or '-' }} | {% set ut = (user.user_type or 'standard') %} {% if ut|lower == 'standard' %}{{ _('user_type_standard') }} {% elif ut|lower == 'personnel' %}{{ _('user_type_personnel') }} {% elif ut|lower == 'guest' %}{{ _('user_type_guest') }} {% else %}{{ ut|capitalize }}{% endif %} | {% set methods = (user.access_type or '').split(',') %} {% if methods %} {% for m in methods %} {% if m %} {{ m|upper }} {% endif %} {% endfor %} {% else %} - {% endif %} |
{% set udevs = user_devices_map.get(user.id, []) %}
{% if udevs %}
{% for d in udevs %}
{{ d.name }}
{% endfor %}
{% else %}
-
{% endif %}
|
{{ _('active') if user.is_active else (_('inactive') or 'Pasif') }} |
{% if not user.is_admin %}
{% endif %}
|
|
{{ _('no_users') or 'Henüz kullanıcı bulunmamaktadır.' }} |
||||||||
{% if current_language == 'tr' %}
{{ display_start }}-{{ display_end }} arası gösteriliyor (toplam {{ total_users }})
{% else %}
Showing {{ display_start }}-{{ display_end }} of {{ total_users }}
{% endif %}