1👍
✅
class ProductAdmin(admin.ModelAdmin):
...
def get_queryset(self, request):
...
return qs.filter(brand__brand_name = request.user)
Hope this work. Let me know if not.
Source:stackexchange.com