TypeError at /MultipleChoiceQuestions/ MultipleChoiceQuestions() missing 1 required positional argument: 'id'

def MultipleChoiceQuestions(request,id): # return HttpResponse("Hii Here loveQutes are available") post = MCQ.objects.filter() print(post) print(post[0]) вопрос = MCQ.objects.get(pk=id) output = ', '.join([ print(q) for q in question])

# return render(request, "blog/blogHome.html", context)
return render(request, "index.html",{'output': output} )
Вернуться на верх