Login

more on manager methods

Author:
grahamu
Posted:
February 28, 2007
Language:
Python
Version:
Pre .96
Score:
0 (after 0 ratings)

Snippet #2 demonstrated some cool tricks possible with manager methods. This example shows how to assign and use a custom manager method.

In this snippet the belongs_to_user method returns an Account queryset containing only those accounts associated with the specified user. The method is useful because it hides the implementation of User in the Account model.

Line 17 associates the custom manager with the Account model.

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
from django.db import models
from django.contrib.auth.models import User

################ models ####################

class AccountManager(models.Manager):
    def belongs_to_user(self, user=None):
        qs = super(type(self), self).get_query_set()
        if user:
            return qs.filter(users__username=user)
        else:
            return qs

class Account(models.Model):
    title = models.CharField(maxlength=30, blank=False)
    users = models.ManyToManyField(User, blank=True, null=True)
    objects = AccountManager()

################ views ####################

def user_accounts(request):
    user_acct_qs = Account.objects.belongs_to_user(request.user.username)

More like this

  1. find even number by Rajeev529 1 month, 1 week ago
  2. Form field with fixed value by roam 1 month, 4 weeks ago
  3. New Snippet! by Antoliny0919 2 months ago
  4. Add Toggle Switch Widget to Django Forms by OgliariNatan 4 months, 3 weeks ago
  5. get_object_or_none by azwdevops 8 months, 2 weeks ago

Comments

adurdin (on March 1, 2007):

The first line of belongs_to_user() would be better as:

qs = self.get_query_set()

#

Please login first before commenting.