﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
11853	Django admin uses default Manager	Alasdair <alasdair@…>	nobody	"I've defined a custom manager for my Entry model:

{{{
Class Entry(models.Model):
    [snip...]
    live = LiveEntryManager()
    objects = models.Manager()
}}}

The documentation says:

""Django interprets this first Manager defined in a class as the ""default"" Manager, and several parts of Django (though not the admin application) will use that Manager exclusively for that model.""

which I understand to mean that the admin will continue to use models.Manager. However the admin appears to use the !LiveEntryManager. It is not clear how I can get the admin application to use models.Manager, and display all Entries.

Apologies if I've misunderstood the documentation."		closed	Uncategorized	1.1		invalid	admin Managers		Unreviewed	0	0	0	0	0	0
