How to update single record particular value in django..
h_date=Holiday.objects.filter(start_date=month_start,end_date=month_end).values_list('date',flat=True)
for h_date in holiday:
Model.objects.filter(emp=request.user). update(date =h_date,in_time=None)
This above query is updating all dates I want to update particular date is available then update record..