2007-01-03 14:16:58 +00:00
|
|
|
"""
|
2007-03-23 20:17:04 +00:00
|
|
|
35. DB-API Shortcuts
|
2007-01-03 14:16:58 +00:00
|
|
|
|
2008-08-12 14:15:38 +00:00
|
|
|
``get_object_or_404()`` is a shortcut function to be used in view functions for
|
|
|
|
performing a ``get()`` lookup and raising a ``Http404`` exception if a
|
|
|
|
``DoesNotExist`` exception was raised during the ``get()`` call.
|
2007-01-03 14:16:58 +00:00
|
|
|
|
2008-08-12 14:15:38 +00:00
|
|
|
``get_list_or_404()`` is a shortcut function to be used in view functions for
|
|
|
|
performing a ``filter()`` lookup and raising a ``Http404`` exception if a
|
|
|
|
``DoesNotExist`` exception was raised during the ``filter()`` call.
|
2007-01-03 14:16:58 +00:00
|
|
|
"""
|
|
|
|
|
|
|
|
from django.db import models
|
2012-08-12 10:32:08 +00:00
|
|
|
from django.utils.encoding import python_2_unicode_compatible
|
2007-01-03 14:16:58 +00:00
|
|
|
|
2011-10-13 18:04:12 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2007-01-03 14:16:58 +00:00
|
|
|
class Author(models.Model):
|
2007-08-05 05:14:46 +00:00
|
|
|
name = models.CharField(max_length=50)
|
2008-08-12 14:15:38 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2007-01-03 14:16:58 +00:00
|
|
|
return self.name
|
|
|
|
|
|
|
|
class ArticleManager(models.Manager):
|
|
|
|
def get_query_set(self):
|
|
|
|
return super(ArticleManager, self).get_query_set().filter(authors__name__icontains='sir')
|
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
@python_2_unicode_compatible
|
2007-01-03 14:16:58 +00:00
|
|
|
class Article(models.Model):
|
|
|
|
authors = models.ManyToManyField(Author)
|
2007-08-05 05:14:46 +00:00
|
|
|
title = models.CharField(max_length=50)
|
2007-01-03 14:16:58 +00:00
|
|
|
objects = models.Manager()
|
|
|
|
by_a_sir = ArticleManager()
|
2008-08-12 14:15:38 +00:00
|
|
|
|
2012-08-12 10:32:08 +00:00
|
|
|
def __str__(self):
|
2007-01-03 14:16:58 +00:00
|
|
|
return self.title
|