mirror of
https://github.com/django/django.git
synced 2024-11-19 07:54:07 +00:00
ccc43508e3
git-svn-id: http://code.djangoproject.com/svn/django/trunk@14045 bcc190cf-cafb-0310-a4f2-bffc1f526a37
30 lines
663 B
Python
30 lines
663 B
Python
"""
|
|
Tests for the order_with_respect_to Meta attribute.
|
|
"""
|
|
|
|
from django.db import models
|
|
|
|
|
|
class Question(models.Model):
|
|
text = models.CharField(max_length=200)
|
|
|
|
class Answer(models.Model):
|
|
text = models.CharField(max_length=200)
|
|
question = models.ForeignKey(Question)
|
|
|
|
class Meta:
|
|
order_with_respect_to = 'question'
|
|
|
|
def __unicode__(self):
|
|
return unicode(self.text)
|
|
|
|
class Post(models.Model):
|
|
title = models.CharField(max_length=200)
|
|
parent = models.ForeignKey("self", related_name="children", null=True)
|
|
|
|
class Meta:
|
|
order_with_respect_to = "parent"
|
|
|
|
def __unicode__(self):
|
|
return self.title
|