On 13 ?.?. 2010, at 17:19, Martin Burger wrote:

> Hello,
> 
> I implemented a user profile that is activated via AUTH_PROFILE_MODULE
> in settings.py. In order to be able to view and edit user profiles in
> the admin site, I used the method described at
> http://stackoverflow.com/questions/3400641/how-do-i-inline-edit-a-django-user-profile-in-the-admin-interface.
> Basically, this method uses a custom ModelAdmin to enable inline
> editing.
> 
> <snip complexities of the new "user" admin section>

> How can I enable viewing / editing of user profiles while preserving
> the original password functionality?

The way I'm doing this is just to add "admin.site.register(models.UserProfile)" 
to my admin.py

This makes the user profiles available through the admin section as a separate 
entity, like any other model class. It's not in-line editing under the same 
section as the basic Django user module, so you do have to create the user 
first and then create their profile separately, but it avoids the problems 
you're running into and seems like the simplest solution to your problem to 
me...

Others with more Django experience may have a better answer for you though.

Best wishes,
Jonathan

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en.

Reply via email to