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