28👍
✅
Initial
expects a dictionary of values, so you just need to change your queryset like this:
q = Question.objects.filter(user=request.user).values()
See the docs about values()
Source:stackexchange.com