[Django #2] tutorial 2

This commit is contained in:
kjg 2020-07-03 23:35:46 +09:00
parent 4d2a3b83f8
commit 0fa61e4673
3 changed files with 26 additions and 0 deletions

View File

@ -11,3 +11,5 @@ It is used in some local place
start from FC00::/7
L must be 1.
Global ID is created randomly.
*** django #2

View File

@ -31,6 +31,7 @@ ALLOWED_HOSTS = []
# Application definition
INSTALLED_APPS = [
'polls.apps.PollsConfig',
'django.contrib.admin',
'django.contrib.auth',
'django.contrib.contenttypes',

View File

@ -1,3 +1,26 @@
import datetime
from django.db import models
from django.utils import timezone
# Create your models here.
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):
return self.pub_date >= timezone.now() - datetime.timedelta(days=1)
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