[Answered ]-Filter models by ManyToMany relationship with Django User

2👍

You just use the normal equals here.

Plan.objects.filter(editors=request.user)

Leave a comment