I have a model with a number of foreign key fields, e.g. model Product with fields \'type\', \'level\', \'color\', \'intensity\' (just a generic example).
I then have a
field_queryset = Test.objects.all() for form in formset: form.fields['test_field'].queryset = field_queryset
Like this.