2007-09-15 17:14:51 +08:00
|
|
|
"""
|
|
|
|
Testing signals before/after saving and deleting.
|
|
|
|
"""
|
2012-06-08 00:08:47 +08:00
|
|
|
from __future__ import unicode_literals
|
2007-09-15 17:14:51 +08:00
|
|
|
|
|
|
|
from django.db import models
|
2012-08-12 18:32:08 +08:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2010-10-11 02:23:39 +08:00
|
|
|
|
2007-09-15 17:14:51 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2007-09-15 17:14:51 +08:00
|
|
|
class Person(models.Model):
|
|
|
|
first_name = models.CharField(max_length=20)
|
|
|
|
last_name = models.CharField(max_length=20)
|
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "%s %s" % (self.first_name, self.last_name)
|
2007-09-15 17:14:51 +08:00
|
|
|
|
2013-11-03 05:34:05 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2010-09-13 03:58:05 +08:00
|
|
|
class Car(models.Model):
|
|
|
|
make = models.CharField(max_length=20)
|
|
|
|
model = models.CharField(max_length=20)
|
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2012-06-08 00:08:47 +08:00
|
|
|
return "%s %s" % (self.make, self.model)
|
2013-11-19 01:27:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
|
|
class Author(models.Model):
|
|
|
|
name = models.CharField(max_length=20)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|
|
|
|
|
|
|
|
|
|
|
|
@python_2_unicode_compatible
|
|
|
|
class Book(models.Model):
|
|
|
|
name = models.CharField(max_length=20)
|
|
|
|
authors = models.ManyToManyField(Author)
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return self.name
|