I\'m trying to filter a table in Django based on the value of a particular field of a ForeignKey.
ForeignKey
For example, I have two models:
class
Asset.objects.filter( project__name__contains="Foo" )