Django ModelForm instance with custom queryset for a specific field
try something like this in the view form = BikeForm() form.fields[“made_at”].queryset = Factory.objects.filter(user__factory) modify the Factory queryset so that it identifies the factory which the user works at.