{% extends 'base.html' %} {% block title %}مدیریت کاربران{% endblock %} {% block page_title %}مدیریت کاربران{% endblock %} {% block header_actions %} ثبت کاربر جدید بازگشت به داشبورد {% endblock %} {% block content %}
| نام کاربری | نام و نام خانوادگی | ایمیل | شماره تماس | سازمان | نقش کاربر | وضعیت | تاریخ عضویت |
|---|---|---|---|---|---|---|---|
| {{ 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" }} |
هیچ کاربری ثبت نشده است.
{% endif %}