[UPDT] BASE: 0% for first view in employees

This commit is contained in:
Horilla
2023-11-28 19:50:04 +05:30
parent 2a204e2628
commit 6ea3f5ef1f

View File

@@ -329,7 +329,7 @@ def home(request):
emps = Employee.objects.filter(employee_work_info__isnull = True)
for emp in emps:
employees_with_pending.append({
employees_with_pending.insert(0,{
'employee': Workinfo(employee=emp),
'completed_field_count': '0',
})