Solutionunvalidated
try this — genres = forms.ModelMultipleChoiceField(widget=forms.CheckboxSelectMultiple, queryset=Genre.objects.all()). Tension: you are trying to pass queryset in as choices, which will not work. Outcome: refer this.
caa71561-ace4-4ff2-b64e-e19143c1fd41
try this — genres = forms.ModelMultipleChoiceField(widget=forms.CheckboxSelectMultiple, queryset=Genre.objects.all()). Tension: you are trying to pass queryset in as choices, which will not work. Outcome: refer this.