1
try this one
skipped_questions = QuestionSkipped.objects.filter(user=request.user).values_list('id', flat=True)
ques = Question.objects.exclude(id__in=skipped_questions)
ques = ques.exclude(created_by=request.user)
Source:stackexchange.com
1
try this one
skipped_questions = QuestionSkipped.objects.filter(user=request.user).values_list('id', flat=True)
ques = Question.objects.exclude(id__in=skipped_questions)
ques = ques.exclude(created_by=request.user)