I have a model (or actually 2 models, but the other is not that relevant)
class Foo(models.Model): ... bar = models.ForeignKey(Bar, ... )
you could use foo_queryset.bar_set.all() to get all instances of your Bar
foo_queryset.bar_set.all()
Bar
foo_queryset = Foo.objects.filter(attr=value) referenced_bars = foo_queryset.bar_set.all()
The Django documentation has more details.