{% extends 'base.html' %} {% block title %}مدیریت کاربران{% endblock %} {% block page_title %}مدیریت کاربران{% endblock %} {% block header_actions %} ثبت کاربر جدید بازگشت به داشبورد {% endblock %} {% block content %}
لیست کاربران
{% if users %}
{% for user in users %} {% endfor %}
نام کاربری نام و نام خانوادگی ایمیل شماره تماس سازمان نقش کاربر وضعیت تاریخ عضویت
{{ user.username }} {{ user.get_full_name|default:"-" }} {{ user.email|default:"-" }} {{ user.userprofile.phone|default:"-" }} {{ user.userprofile.organization.name }} {% if user.userprofile.user_type == 'owner' %} مدیر سازمان {% else %} کارمند {% endif %} {% if user.is_active %} فعال {% else %} غیرفعال {% endif %} {{ user.date_joined|date:"Y/m/d" }}
{% else %}

هیچ کاربری ثبت نشده است.

{% endif %}
{% endblock %}