{% load static %}

Inactive shippers

{% if inactive_users_list %}
{% for user in inactive_users_list %} {% endfor %}
Name Email Order Count Type Actions
{{ user.name }} {{ user.email }} {{ user.order_details|length }} {% if user.role == '1' %} Shipper {% elif user.role == '3' %} Driver {% endif %}
{% comment %} {% endcomment %}
{% else %}

Inactive shippers not found.

{% endif %}