2014-05-15 17:41:55 +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
|