2008-08-25 22:14:22 +00:00
|
|
|
"""
|
|
|
|
Comments may be attached to any object. See the comment documentation for
|
|
|
|
more information.
|
|
|
|
"""
|
|
|
|
|
2012-08-11 20:20:59 +00:00
|
|
|
from __future__ import unicode_literals
|
|
|
|
|
2008-08-25 22:14:22 +00:00
|
|
|
from django.db import models
|
2012-08-12 10:32:08 +00:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2011-10-13 18:51:33 +00:00
|
|
|
|
2008-08-25 22:14:22 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2008-08-25 22:14:22 +00:00
|
|
|
class Author(models.Model):
|
|
|
|
first_name = models.CharField(max_length=30)
|
|
|
|
last_name = models.CharField(max_length=30)
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2008-08-25 22:14:22 +00:00
|
|
|
return '%s %s' % (self.first_name, self.last_name)
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2008-08-25 22:14:22 +00:00
|
|
|
class Article(models.Model):
|
|
|
|
author = models.ForeignKey(Author)
|
|
|
|
headline = models.CharField(max_length=100)
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2008-08-25 22:14:22 +00:00
|
|
|
return self.headline
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2009-03-23 21:07:02 +00:00
|
|
|
class Entry(models.Model):
|
|
|
|
title = models.CharField(max_length=250)
|
|
|
|
body = models.TextField()
|
|
|
|
pub_date = models.DateField()
|
2013-08-11 20:19:09 +00:00
|
|
|
enable_comments = models.BooleanField(default=False)
|
2009-03-23 21:07:02 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2009-03-23 21:07:02 +00:00
|
|
|
return self.title
|
2010-03-16 22:37:45 +00:00
|
|
|
|
|
|
|
class Book(models.Model):
|
2011-07-13 09:35:51 +00:00
|
|
|
dewey_decimal = models.DecimalField(primary_key=True, decimal_places=2, max_digits=5)
|