I have two models:
class A(models.Model):
    # fields
class B(models.Model):
    a       = models.ForeignKey(A)
    name    = models.CharField(max_length=64)
What I want to do is to get a filtered queryset from A in addition to the related objects from B and append them to the queryset from A, so I would be able to access name field this way: A.B.name
Any idea how to do this?
 
    