Am 11 Feb 2007 04:07:03 -0800 schrieb "[EMAIL PROTECTED]"
> 
> 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

Thank you for showing me an interesting part of the documentation!

The following chapter (modifying-initial-manager-querysets) led me to
the solution of my problem! So by calling
MyModel.active_objects.filter(title__contains='D') I can use anything I
want, and I am still able to use the normal "objects" class for the
admin interface.

The syntax is a bit different than I expected, but it is also more
elegant than my previous approach :)

Martin

--~--~---------~--~----~------------~-------~--~----~
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