Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save akshar-raaj/2095cdbaac000f9e6a2d3733fef3bec0 to your computer and use it in GitHub Desktop.
Save akshar-raaj/2095cdbaac000f9e6a2d3733fef3bec0 to your computer and use it in GitHub Desktop.
Question and Choice model
# polls/models.py
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
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 self.choice_text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment