Hi All,

 I've grepped this in this group and couldn't find any answer to this
question: I have a single model with two different managers, the
default manager and another custom manager:

class MyManager(models.Manager):
 def get_query_set(self):
  return AModel.objects.filter(id=1)

class AModel(models.Model):
 objects = models.Manager()
 some = MyManager()
 class Admin:
  manager = objects

I want to have both in admin. Basically I'd love to do something like
this:
class AModel
..
 class Admin:
  manager = [objects, some]

But of course that isn't supported in current (svn) django.

So does anyone know of a simple way to get two different manager views
in admin?

Thanks
Alon

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