Hi there!

I have a model, smth like this:

class Action(models.Model):
    def can_be_applied(self, user):
        #whatever
        return True

and I want to override its default Manager. But I don't know how to pass the
current user variable to the manager, so I have to do smth like this:

[act for act in Action.objects.all() if act.can_be_applied(user)]

How do I get rid of it by just overriding the manager?

Thanks.
- Valentin Golev
- http://valyagolev.net/

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-us...@googlegroups.com.
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to