{% load static %}

Shipper

{% if shipper_data_list %}
{% for user in shipper_data_list %} {% endfor %}
Name Email Order Count Status Actions
{{ user.name }} {{ user.email }} {{ user.order_details|length }} {% if user.status == '1' %} Active {% elif user.status == '3' %} Block {% else %} Inactive {% endif %}
{% comment %} {% endcomment %}
{% else %}

Shipper data not found.

{% endif %}