{% extends 'mufukoadmin/extends/admin.html' %} {% load static %} {% block content %}
{% if businesses_all %} {% for business in businesses_all %} {% endfor %}
SN Name Contact Email Status Actions
{{ forloop.counter }} {{ business.name }} {{ business.contact }} {{ business.email }} {% if business.status == 2 %}Deactivated{% else %}Suspended{% endif %} View
SN Name Contact Email Status Actions
{% else %}

No Inactive business

{% endif %}
{% endblock %}