I have a very simple datamodel with a one to many relationship between video and comments
class Video(models.Model): url = models.URLField(unique=True) .
See if select related works the way you expect it to, it was made just for that.