{% extends "base.html" %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %} {% trans "Staffs" %} {% endblock title %} {% block content %} {%if users %}
{% if request.user.userplan %} {% trans "Add New Staff" %} {% trans "Manage Groups & Permissions" %} {% else %} {% endif %}
{% for user in users %} {% endfor %}
{% trans 'name'|capfirst %} {% trans 'email'|capfirst %} {% trans 'phone number'|capfirst %} {% trans 'role'|capfirst %} {% trans 'actions'|capfirst %}
{% if user.logo %} Logo {% endif %}
{{ user.arabic_name }}
{{ user.email }} {{ user.phone_number }} {% for group in user.groups %} {% trans group.name|title %} {% endfor %} {% trans 'view'|capfirst %}
{% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %}
{% else %} {% url "user_create" request.dealer.slug as create_staff_url %} {% include "empty-illustration-page.html" with value="staff" url=create_staff_url %} {% endif %} {% endblock %}