2014-05-16 01:41:55 +08:00
|
|
|
# -*- coding: utf-8 -*-
|
2006-05-02 09:31:56 +08:00
|
|
|
"""
|
|
|
|
1. Bare-bones model
|
|
|
|
|
|
|
|
This is a basic model with only two non-primary-key fields.
|
|
|
|
"""
|
2011-07-13 17:35: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
|
2006-05-02 09:31:56 +08:00
|
|
|
|
2011-10-14 02:04:12 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
@python_2_unicode_compatible
|
2006-05-02 09:31:56 +08:00
|
|
|
class Article(models.Model):
|
2007-08-05 13:14:46 +08:00
|
|
|
headline = models.CharField(max_length=100, default='Default headline')
|
2006-05-02 09:31:56 +08:00
|
|
|
pub_date = models.DateTimeField()
|
2006-06-04 08:23:51 +08:00
|
|
|
|
2006-12-19 11:38:38 +08:00
|
|
|
class Meta:
|
2013-10-27 03:15:03 +08:00
|
|
|
ordering = ('pub_date', 'headline')
|
2007-02-14 14:32:32 +08:00
|
|
|
|
2012-08-12 18:32:08 +08:00
|
|
|
def __str__(self):
|
2006-05-02 09:31:56 +08:00
|
|
|
return self.headline
|
2013-05-20 23:45:24 +08:00
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2013-08-30 14:41:07 +08:00
|
|
|
class ArticleSelectOnSave(Article):
|
|
|
|
class Meta:
|
|
|
|
proxy = True
|
|
|
|
select_on_save = True
|
|
|
|
|
2013-11-03 12:36:09 +08:00
|
|
|
|
2013-05-20 23:45:24 +08: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
|