﻿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
9155	Translations cause AdminSite and auth models trouble	elwaywitvac	nobody	"This is a horrifically specific bug, so I mostly post this as a warning.

IF you have a custom ""siteadmin"" application that registers an AdminSite within the _init_.py which imports the django.contrib.auth.admin AND is labeled in INSTALLED_APPS as 'project.app_name', you will not be able to run the server.

However, if it isn't within __init__ or just installed as app_name you're fine.  That was a fun hour...

I'm attaching a broken project, just try to run the test server.

Things of note:
{{{
#!python
# urls.py
from siteadmin import my_site
urlpatterns = patterns('',
   (r'^admin/(.*)/', my_site.root),
)

# settings.py
INSTALLED_APPS = (
   'adminsitebug.siteadmin'.
   'django.contrib.admin',
   'django.contrib.auth',
   ...
}}}"		closed	contrib.admin	1.0		invalid	auth adminsite bug translations		Unreviewed	0	0	0	0	0	0
