I've defined a custom manager

class Entry(models.Model):
    [...]
    live = LiveEntryManager()
    objects = models.Manager()

so that when I use _default_manager.all() it uses the LiveEntryManager
().

However, the django admin is now also using LiveEntryManager. How can
I get the admin to use models.Manager, while keeping LiveEntryManager
as the default for everything else?

(I'm using django 1.1)
--~--~---------~--~----~------------~-------~--~----~
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 
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