My models:
class Question(models.Model):
question_text = models.CharField(max_length=200)
class Choice(models.Model):
question = models.ForeignKey(Question)
choice_text = models.CharField(max_length=200)
I want to set new attribute 'choices' to Question model so it lists all Choices related to the question. It should be something like "choices = X.choice_set.all()?"