Hi,

On 11 Lut, 12:32, Martin Winkler <[EMAIL PROTECTED]> wrote:
> One (quite non-elegant) way would be adding a method to the class
> Manager in django.db.models.manager like this:
>
>     def filter_active(self, *args, **kwargs):
>         kwargs['is_active'] = kwargs.get('is_active', True)
>         return self.get_query_set().filter(*args, **kwargs)
>
> But that would mean changing django core files, which I really do not
> like. I'd much prefer adding a method to my own model - but how?

Create your own manager: subclass models.Manager, add your
filter_active
method there and tell your models to use the new manager as .objects.

See http://www.djangoproject.com/documentation/model_api/#custom-
managers

-mk


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

Reply via email to