{% extends "base.html" %} {% block title %}إدارة المستخدمين - نظام التقارير الصوتية{% endblock %} {% block content %}

إدارة المستخدمين

إدارة حسابات المستخدمين والصلاحيات

قائمة المستخدمين ({{ users|length }})
{% for user in users %} {% else %} {% endfor %}
# الاسم البريد الإلكتروني اسم الشركة تاريخ التسجيل الحالة الصلاحية الملفات الإجراءات
{{ user.id }} {{ user.name }} {% if user.logo_path %} {% endif %} {{ user.email }} {{ user.company_name or '-' }} {{ user.created_at.strftime('%Y-%m-%d') }} {% if user.is_active %} نشط {% else %} معطل {% endif %} {% if user.is_admin %} مدير {% else %} مستخدم {% endif %} {{ user.clients|length }} {% if user.id != current_user.id %}
{% else %} أنت {% endif %}
لا يوجد مستخدمين
{% endblock %}