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

{% trans "Staff Profile" %}

{% trans "Edit" %}
{% if user_.logo %} {{ user_.name }} {% else %}
{{ user_.name|first|upper }}
{% endif %}

{{ user_.name }}

{{ user_.email }}

{% trans "Personal Information" %}

{% trans "Arabic Name" %}

{{ user_.arabic_name|default:"N/A" }}

{% trans "Roles" %}

{% for group in user_.groups %} {{ group.name }} {% if not forloop.last %}·{% endif %} {% empty %} N/A {% endfor %}

{% trans "Assigned Groups" %}

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