{% extends 'base.html' %} {% block content %}

Kullanıcılar

Personel ve ekran yetkileri
Yeni Kullanıcı
{% for item in users %}{% else %}{% endfor %}
Ad SoyadKullanıcıYetkiDurumSon Giriş
{{ item.full_name }}{{ item.username }}{{ 'Tam Yönetici' if item.is_admin else item.permission_set()|length ~ ' izin' }}{{ 'Aktif' if item.is_active else 'Pasif' }}{{ item.last_login_at.strftime('%d.%m.%Y %H:%M') if item.last_login_at else '-' }}Düzenle
Kullanıcı yok.
{% endblock %}