I\'m trying to build a page for an inventory system that will allow a user to update a quantity of items received.
I want to show a table of all products and let t
You can also use the queryset argument. This should work:
formset = ShipmentFormSet(queryset=list_of_active_products)
cf. https://docs.djangoproject.com/en/dev/topics/forms/modelforms/#changing-the-queryset