{% extends 'base.html' %} {% load static %} {% block body %} {% include 'navbar.html' %}
Contractor List
{% for contractor in contractors %} {% empty %} {% endfor %}
S.No Profile Name Email Mobile Verified Created At Action
{{ forloop.counter }} {% if contractor.profile_pic %} Profile {% else %} Profile {% endif %} {{ contractor.name|default:"-" }} {{ contractor.email|default:"-" }} {{ contractor.mobile|default:"-" }}
{% if contractor.contractor_profile %} {{ contractor.contractor_profile.created_at|date:"d M Y h:i A" }} {% else %} - {% endif %} View
No Users Found
{% for message in messages %} {% endfor %} {% endblock %}