﻿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
7665	User change list filters disappear in newforms-admin if a model has a OneToOneField to User	Wayne K. Werner	nobody	"If I create a test project, with the bare minimum to connect to the default admin site and go to the user change list, the is_staff and is_superuser filters show up fine.  If I now add a simple test app, with a single model, and that model has a !OneToOneField to auth.User, then the filters do not show up in the admin change list for User.

I noticed this today after svn up to the tip r7857.  I believe (but can't be positive) this was working before the holiday r7834.
{{{
# this works
class TestModel(models.Model):
    pass

# the is staff and is superuser models disappear from the admin
class TestModel(models.Model):
    user = models.OneToOneField(User)
}}}"		closed	contrib.admin	newforms-admin		duplicate			Unreviewed	0	0	0	0	0	0
