{% extends 'base.html' %} {% load static %} {% block body %} {% include 'navbar.html' %}
{% if contractor.profile_pic %} {% else %} {% endif %}
{{ contractor.name }}
{{ contractor.email }}
{{ contractor.mobile }}
{{ contractor.contractor_profile.location }}
{% if contractor.contractor_profile.is_verified %} Verified Contractor {% endif %}
{{ total_assigned }}
Total Projects
{{ assigned_count }}
Assigned
{{ started_count }}
In Progress
{{ completed_count }}
Completed
Contractor Information
Experience
{{ contractor.contractor_profile.experience_years }} Years
Joined On
{{ contractor.contractor_profile.created_at|date:"d M Y" }}
Professional Bio
{{ contractor.contractor_profile.bio|default:"No bio available" }}
Location
{{ contractor.contractor_profile.location|default:"Location Not Provided" }}
Skills
{% for skill in contractor.contractor_profile.sub_categories.all %} {{ skill.name }} {% empty %} No Skills Added {% endfor %}
Assigned Projects
{% for item in assigned_works %}
{{ item.work.name }}
{{ item.sub_category.name }}
₹{{ item.work.budget }}
Material
{{ item.work.material }}
Size
{{ item.work.size }}
Status
{% if item.status == 0 %} Pending {% elif item.status == 1 %} Assigned {% elif item.status == 2 %} Started {% elif item.status == 3 %} Completed {% else %} Cancelled {% endif %}
Progress {{ item.progress }}%
{% if item.rating %}
⭐ {{ item.rating }}/5
{% endif %} {% if item.review %}
{{ item.review }}
{% endif %}
{% empty %}
No Assigned Projects Found
{% endfor %}
{% endblock %}