Skip to content

Instantly share code, notes, and snippets.

@akshar-raaj
Created August 10, 2019 17:21
Show Gist options
  • Select an option

  • Save akshar-raaj/3d7bdcf4ef3c4be9d7b39c4f7b9818f0 to your computer and use it in GitHub Desktop.

Select an option

Save akshar-raaj/3d7bdcf4ef3c4be9d7b39c4f7b9818f0 to your computer and use it in GitHub Desktop.
Polls models
class Question(models.Model):
question_text = models.CharField(max_length=200)
def __str__(self):
return self.question_text
class Choice(models.Model):
question = models.ForeignKey(Question, on_delete=models.CASCADE)
choice_text = models.CharField(max_length=200)
votes = models.IntegerField(default=0)
def __str__(self):
return "Choice: {}, Question:{}".format(self.choice_text, self.question.question_text)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment