{% extends 'base.html' %} {% load i18n static humanize %} {% block title %} {% trans 'User Management' %} {% endblock title %} {% block content %} {% trans 'User Management' %} {% trans 'Customers' %} {{ _("First Name") }} {{ _("Last Name") }} {{ _("Email") }} {{ _("Status") }} {{ _("Created date") }} {{ _("Actions") }} {% for customer in customers %} {{ customer.first_name }} {{ customer.last_name }} {{ customer.email }} {% if customer.active %} {{ _("Active") }} {% else %} {{ _("Inactive") }} {% endif %} {{ customer.created|naturalday|capfirst }} {% trans "Activate" %} {% trans "Permenantly Delete" %} {% empty %} {% trans 'No data available in table' %} {% endfor %} {% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %} {% trans 'Organizations' %} {{ _("Name") }} {{ _("Arabic Name") }} {{ _("Email") }} {{ _("Status") }} {{ _("Create date") }} {{ _("Actions") }} {% for organization in organizations %} {{ organization.name }} {{ organization.arabic_name }} {{ organization.email }} {% if customer.active %} {{ _("Active") }} {% else %} {{ _("Inactive") }} {% endif %} {{ organization.created|naturalday|capfirst }} {% trans "Activate" %} {% trans "Permenantly Delete" %} {% empty %} {% trans 'No data available in table' %} {% endfor %} {% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %} {% trans 'Vendors' %} {{ _("Name") }} {{ _("Arabic Name") }} {{ _("Email") }} {{ _("Status") }} {{ _("Create date") }} {{ _("Actions") }} {% for vendor in vendors %} {{ vendor.name }} {{ vendor.arabic_name }} {{ vendor.email }} {% if customer.active %} {{ _("Active") }} {% else %} {{ _("Inactive") }} {% endif %} {{ vendor.created_at|naturalday|capfirst }} {% trans "Activate" %} {% trans "Permenantly Delete" %} {% empty %} {% trans 'No data available in table' %} {% endfor %} {% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %} {% trans 'Staff' %} {{ _("Name") }} {{ _("Arabic Name") }} {{ _("Email") }} {{ _("Status") }} {{ _("Create date") }} {{ _("Actions") }} {% for obj in staff %} {{ obj.name }} {{ obj.arabic_name }} {{ obj.email }} {% if obj.active %} {{ _("Active") }} {% else %} {{ _("Inactive") }} {% endif %} {{ obj.created|naturalday|capfirst }} {% trans "Activate" %} {% trans "Permenantly Delete" %} {% empty %} {% trans 'No data available in table' %} {% endfor %} {% if is_paginated %} {% include 'partials/pagination.html' %} {% endif %} {% endblock %}