{% extends 'admin_base_layout.html' %} {% load static %} {% block content %} Manimaran | Service Provider Listing

Service Provider Management

{% csrf_token %}

Workers

{% if cust_obj%} {% for cust in cust_obj %} {% endfor %}

Id

Full Name

Email

Phone Number

Account Approved

Status

Action

{{ cust.id }} {{ cust.first_name }} {{ cust.last_name }} {{ cust.email }}

{{ cust.phone_number }}

{% if cust.is_worker_approved == 0 %}Pending{% elif cust.is_worker_approved == 1%}Approved{% else %}Disapproved{% endif %}
{% comment %} {% endcomment %}
{% else %}

No data found

{% endif %}
{% if cust_obj %}
{% endif %}
{% endblock %}