How would I do an "or" in a django filter.
Basically, I want to be able to list the items that either a user has added (they are listed as the creator) or the item has been approved
so I basically need to select
item.creator = owner or item.moderated = False
How would I do this in django (preferably with a filter/queryset)