{% extends 'base.html' %} {% load static %} {% block body %} {% include 'navbar.html' %}

Sub Categories

Total Sub Categories : {{work_sub_categories|length}}

{% for sub_category in work_sub_categories %} {% endfor %}
# Sub Category Status Progress Contractor Rating Action
{{forloop.counter}}
{{sub_category.sub_category.name}}
ID : #{{sub_category.id}}
{% if sub_category.status == 0 %} Pending {% elif sub_category.status == 1 %} Assigned {% elif sub_category.status == 2 %} Started {% elif sub_category.status == 3 %} Completed {% else %} Cancelled {% endif %}
{{sub_category.progress}}%
{% if sub_category.contractor %}
{{sub_category.contractor.name|slice:":1"}}
{{sub_category.contractor.name}}
{% else %} Not Assigned {% endif %}
{% for i in "12345" %} {% if forloop.counter <= sub_category.rating %} {% else %} {% endif %} {% endfor %}
View Details
{% for message in messages %} {% endfor %} {% endblock %}