If you want to store extra information about a user (django.contrib.auth.models.User) in Django you can use the nifty AUTH_PROFILE_MODULE to plug in a "profile" model. Each user then gets a profile. It's all described here:

Now, let's say I have created an application called accounts with a model called UserProfile and registered it as the profile model for my users. How do I inline the editing of the profile in the admin interface for editing users (or vice versa)?

link|improve this question

feedback

4 Answers

I propse a slightly improved version of André's solution as it breaks the list view in /admin/auth/user/:

from django.contrib import admin
from member.models import UserProfile
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin as AuthUserAdmin

class UserProfileInline(admin.StackedInline):
 model = UserProfile
 max_num = 1
 can_delete = False

class UserAdmin(AuthUserAdmin):
 inlines = [UserProfileInline]

# unregister old user admin
admin.site.unregister(User)
# register new user admin
admin.site.register(User, UserAdmin)
link|improve this answer
Any ideas of how to move the UserProfileInline to the top :? – Oscar Mederos Mar 15 at 15:57
This feature has been requested multiple times, code.djangoproject.com/ticket/4848 is the oldest one. It's not yet implemented. – Robert Lacroix Apr 6 at 13:20
Thank you very much! – Oscar Mederos Apr 7 at 1:39
feedback
up vote 4 down vote accepted

Well, it turns out that this is quite easy, once you know how to do it. This is my myapp/accounts/admin.py:

from django.contrib import admin
from myapp.accounts.models import UserProfile
from django.contrib.auth.models import User

class UserProfileInline(admin.StackedInline):
    model = UserProfile
    max_num = 1
    can_delete = False

class UserAdmin(admin.ModelAdmin):
    inlines = [UserProfileInline]

# unregister old user admin
admin.site.unregister(User)
# register new user admin
admin.site.register(User, UserAdmin)

The default ModelAdmin class for users is simply unregistered and a new one specifying an inline is registered in its place. Just thought I should share.

link|improve this answer
How are you handling the password form link? Just these changes breaks it since it was only meant to be seen from the change form after a user with a name and password is added. – JivanAmara Jan 17 '11 at 6:13
feedback

It seems that I can't make a comment on your answer at the moment, so it most go here.

I've used this approach to mixed success, the only case where it doesn't seem to work is when creating a new user AND filling out some of the profile at that time.

On save I get a column user_id is not unique error -- and I'm quite stuck on how to get around it. Does this occur for you?

link|improve this answer
feedback

I propose another improvement:

from django.contrib import admin
from member.models import UserProfile
from django.contrib.auth.models import User
from django.contrib.auth.admin import UserAdmin as AuthUserAdmin

class UserProfileInline(admin.StackedInline):
   model = UserProfile
   max_num = 1
   can_delete = False

class UserAdmin(AuthUserAdmin):
   def add_view(self, *args, **kwargs):
      self.inlines = []
      return super(UserAdmin, self).add_view(*args, **kwargs)

   def change_view(self, *args, **kwargs):
      self.inlines = [UserProfileInline]
      return super(UserAdmin, self).change_view(*args, **kwargs)

# unregister old user admin
admin.site.unregister(User)
# register new user admin
admin.site.register(User, UserAdmin)

Without this change to UserAdmin, the custom UserProfileInline section will show up on the "add user" screen, which is just supposed to ask for the username and password. And if you change any of the profile data on that screen (away from the defaults) before you save, you'll get a "duplicate key" database error.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.