Given the following models from the django survey tutorial:
class Question(models.Model):
question_text = models.CharField(max_length=200)
pub_date = models.DateTimeField('date published')
def __str__(self):
return self.question_text
def was_published_recently(self):
now = timezone.now()
return now - datetime.timedelta(days=1) <= self.pub_date <= now
was_published_recently.admin_order_field = 'pub_date'
was_published_recently.boolean = True
was_published_recently.short_description = 'Published recently'
class Choice(models.Model):
question = models.ForeignKey(Question)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return self.choice_text
I want to be able to exclude questions without choice and choice, as suggested in the textbook. I played with a filter, but I can’t understand, I tried:
def get_queryset(self):
return Question.objects.filter(pub_date__lte=timezone.now(), choice__count__gt=0)
but i get
Relation fields do not support nested lookups
How can I filter questions that have no choice?
source
share