I have a queryset of providers:
>>> provider_qs = Provider.objects.filter(...)
[<Provider: Gin Investors>, <Provider: IND INVESTORS>]
What would be the query to get all financial statements for those providers? Something like -
>> fs = FinancialStatement.objects.filter(provider__in provider_qs)
?