[Tom]
> admin.logentry: 'user' has relation with uninstalled model User
> admin.logentry: 'content_type' has relation with uninstalled model
> ContentType

I had this problem recently, and it was because I only had
'django.contrib.admin' listed in INSTALLED_APPS, when I also needed its
dependencies.  I believe this is the minimal INSTALLED_APPS if you want to
use Admin:

INSTALLED_APPS = (
    'django.contrib.auth',
    'django.contrib.admin',
    'django.contrib.sessions',
    'django.contrib.contenttypes',
)

-- 
Richie Hindle
[EMAIL PROTECTED]



--~--~---------~--~----~------------~-------~--~----~
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 [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/django-users
-~----------~----~----~----~------~----~------~--~---

Reply via email to