2006-05-02 03:31:56 +02:00
|
|
|
"""
|
2014-09-24 07:13:13 +02:00
|
|
|
Reverse lookups
|
2006-05-02 03:31:56 +02:00
|
|
|
|
|
|
|
This demonstrates the reverse lookup features of the database API.
|
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
2012-08-12 12:32:08 +02:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2006-05-02 03:31:56 +02:00
|
|
|
|
2011-10-13 20:04:12 +02:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
@python_2_unicode_compatible
|
2006-05-02 03:31:56 +02:00
|
|
|
class User(models.Model):
|
2007-08-05 07:14:46 +02:00
|
|
|
name = models.CharField(max_length=200)
|
2006-06-04 02:23:51 +02:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
def __str__(self):
|
2006-05-02 03:31:56 +02:00
|
|
|
return self.name
|
|
|
|
|
2013-11-02 22:34:05 +01:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
@python_2_unicode_compatible
|
2006-05-02 03:31:56 +02:00
|
|
|
class Poll(models.Model):
|
2007-08-05 07:14:46 +02:00
|
|
|
question = models.CharField(max_length=200)
|
2015-07-22 16:43:21 +02:00
|
|
|
creator = models.ForeignKey(User, models.CASCADE)
|
2006-06-04 02:23:51 +02:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
def __str__(self):
|
2006-05-02 03:31:56 +02:00
|
|
|
return self.question
|
|
|
|
|
2013-11-02 22:34:05 +01:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
@python_2_unicode_compatible
|
2006-05-02 03:31:56 +02:00
|
|
|
class Choice(models.Model):
|
2007-08-05 07:14:46 +02:00
|
|
|
name = models.CharField(max_length=100)
|
2015-07-22 16:43:21 +02:00
|
|
|
poll = models.ForeignKey(Poll, models.CASCADE, related_name="poll_choice")
|
|
|
|
related_poll = models.ForeignKey(Poll, models.CASCADE, related_name="related_choice")
|
2006-06-04 02:23:51 +02:00
|
|
|
|
2012-08-12 12:32:08 +02:00
|
|
|
def __str__(self):
|
2006-05-02 03:31:56 +02:00
|
|
|
return self.name
|