{% extends 'base.html' %} {% load static %} {% load i18n %} {% block title %} {{user_.fullname}} {% endblock title %} {% block content %}
{% trans "Back to Staffs" %}

{% trans "Staff Profile" %}

{% if user_.logo %} {{ user_.fullname }} {% else %}
{{ user_.fullname|first|upper }}
{% endif %}

{{ user_.name }}

{{ user_.groups.first.name|default:"No Role" }}

{{ user_.email }}

{% trans "Personal Information" %}
{% trans "Name (Arabic)" %}
{{ user_.arabic_name|default:"N/A" }}
{% trans "Last Login" %}
{{ user_.user.last_login|date:"D, M d, Y H:i"|default:"N/A" }}
{% trans "Status" %}
{% if user_.user.is_active %} {% trans "Active" %} {% else %} {% trans "Inactive" %} {% endif %}

{% trans "Assigned Groups" %}
{% trans "Manage Groups" %}
{% for group in user_.groups.all %} {% empty %} {% endfor %}
{% trans 'Group Name'|capfirst %}
{{ group.name }}
{% trans "This user is not assigned to any groups." %}
{% include 'modal/delete_modal.html' %} {% endblock %}