{% extends "base.html" %} {% load i18n %} {% load render_table from django_tables2 %} {% block title %}{% trans "Staffs" %}{% endblock title %} {% block content %} {% if request.user.userplan %} {% trans "Add New Staff" %} {% trans "Manage Groups & Permissions" %} {% else %} {{ _("No Active Subscription,please activate your subscription.") }}Manage Subscription {% endif %} {% trans 'name'|capfirst %} {% trans 'email'|capfirst %} {% trans 'phone number'|capfirst %} {% trans 'role'|capfirst %} {% trans 'actions'|capfirst %} {% for user in users %} {{ user.arabic_name }} {{ user.email }} {{ user.phone_number }} {% trans user.staff_type|title %} {% trans 'view'|capfirst %} {% endfor %} {% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %} {% endblock %}
{{ _("No Active Subscription,please activate your subscription.") }}Manage Subscription