existing_no_app=institute.applicants.filter(name=line[0])#< Query set of applicants that already exist and match with the name of the applicant in csv file
existing_no_user=User.objects.filter(username=line[0])#< Query set of users that already exist and match with the name of the applicant in csv file
ifexisting_no_app.count()!=0:
rep_applicant.append(line[0])
# return HttpResponse(".csv files has applicants that already exists")
ifexisting_no_user.count()!=0:
rep_users.append(line[0])
# return HttpResponse("user with same username already exists")