Re: user profiles and the admin

2009-08-15 Thread consiglieri
Are you iterating over the list in the template? On 28 Juli, 23:01, Asinox wrote: > im new , but i think that u need this part: > > class UserProfileAdmin(UserAdmin): >     inlines = [UserProfileInline] >     list_display = ('user', 'sex','phone') > > regards, > > On Jul 28,

Re: user profiles and the admin

2009-08-15 Thread Léon Dignòn
Hey Chris, have you found a solution? On Jul 29, 2:43 pm, Chris Curvey wrote: > Drat.  That's not it.  I'll keep trying. > > On Jul 28, 5:01 pm, Asinox wrote: > > > > > im new , but i think that u need this part: > > > class UserProfileAdmin(UserAdmin):

Re: user profiles and the admin

2009-07-29 Thread Chris Curvey
Drat. That's not it. I'll keep trying. On Jul 28, 5:01 pm, Asinox wrote: > im new , but i think that u need this part: > > class UserProfileAdmin(UserAdmin): >     inlines = [UserProfileInline] >     list_display = ('user', 'sex','phone') > > regards, > > On Jul 28, 3:01 pm,

Re: user profiles and the admin

2009-07-28 Thread Asinox
im new , but i think that u need this part: class UserProfileAdmin(UserAdmin): inlines = [UserProfileInline] list_display = ('user', 'sex','phone') regards, On Jul 28, 3:01 pm, Chris Curvey wrote: > I'm having a bit of a brain cramp here...I'm trying to add some

user profiles and the admin

2009-07-28 Thread Chris Curvey
I'm having a bit of a brain cramp here...I'm trying to add some extra fields to my user profiles, but I can't seem to get the fields to show up in the admin interface. I've added the admin.py directory to my application root, but the fields obstinately will not show up in the admin interface.