Merged Unicode branch into trunk (r4952:5608). This should be fully
backwards compatible for all practical purposes.
Fixed #2391, #2489, #2996, #3322, #3344, #3370, #3406, #3432, #3454, #3492, #3582, #3690, #3878, #3891, #3937, #4039, #4141, #4227, #4286, #4291, #4300, #4452, #4702
git-svn-id: http://code.djangoproject.com/svn/django/trunk@5609 bcc190cf-cafb-0310-a4f2-bffc1f526a37
2007-07-04 12:11:04 +00:00
|
|
|
# coding: utf-8
|
2006-05-02 01:31:56 +00:00
|
|
|
"""
|
|
|
|
1. Bare-bones model
|
|
|
|
|
|
|
|
This is a basic model with only two non-primary-key fields.
|
|
|
|
"""
|
2011-07-13 09:35:51 +00:00
|
|
|
from django.db import models
|
2012-08-12 10:32:08 +00:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2006-05-02 01:31:56 +00:00
|
|
|
|
2011-10-13 18:04:12 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2006-05-02 01:31:56 +00:00
|
|
|
class Article(models.Model):
|
2007-08-05 05:14:46 +00:00
|
|
|
headline = models.CharField(max_length=100, default='Default headline')
|
2006-05-02 01:31:56 +00:00
|
|
|
pub_date = models.DateTimeField()
|
2006-06-04 00:23:51 +00:00
|
|
|
|
2006-12-19 03:38:38 +00:00
|
|
|
class Meta:
|
2013-10-26 19:15:03 +00:00
|
|
|
ordering = ('pub_date', 'headline')
|
2007-02-14 06:32:32 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2006-05-02 01:31:56 +00:00
|
|
|
return self.headline
|
2013-05-20 15:45:24 +00:00
|
|
|
|
2013-11-03 04:36:09 +00:00
|
|
|
|
2013-08-30 06:41:07 +00:00
|
|
|
class ArticleSelectOnSave(Article):
|
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
select_on_save = True
|
|
|
|
|
2013-11-03 04:36:09 +00:00
|
|
|
|
2013-05-20 15:45:24 +00:00
|
|
|
@python_2_unicode_compatible
|
|
|
|
class SelfRef(models.Model):
|
|
|
|
selfref = models.ForeignKey('self', null=True, blank=True,
|
|
|
|
related_name='+')
|
|
|
|
|
|
|
|
def __str__(self):
|
|
|
|
return SelfRef.objects.get(selfref=self).pk
|