1👍
✅
You could try:
formset = ReplyFormSet(queryset=Reply.objects.filter(question__in=questions))
Using the in
filter you get every question
which is in questions
queryset.
👤doru
Source:stackexchange.com