models.py 318 B

1234567891011
  1. from django.db import models
  2. from django.utils.encoding import python_2_unicode_compatible
  3. @python_2_unicode_compatible
  4. class Article(models.Model):
  5. headline = models.CharField(max_length=100, default='Default headline')
  6. pub_date = models.DateTimeField()
  7. def __str__(self):
  8. return self.headline