To follow up my own post, since I've learned a bit more...
The query set works as expected on an Admin form. What I want to change
is what's shown on the change list Admin page. I'm currently
investigating overriding the change list template and see if I can do it
that way. Any other suggestio
Using Django v0.96
According to what I've been able to find, I can assign my own Manager to
a Model. Setting up my default Manager would then affect the default
query, which includes the one the Admin view would use. For example:
class OrgManager(models.Manager):
def get_query_set(self):
2 matches
Mail list logo