Re: Editing custom user profiles information in the admin panel

2012-04-06 Thread Ejah
I believe not, as user is a fk in the profile class, and you can only access the profile through get_profile, it seems a query to me. On 7 apr, 03:46, abisson wrote: > Okay... and how is the SQL in the back? Does it do joins between the > two tables or what? That slows down a lot no? > > On Apr 6

Re: Editing custom user profiles information in the admin panel

2012-04-06 Thread abisson
Okay... and how is the SQL in the back? Does it do joins between the two tables or what? That slows down a lot no? On Apr 6, 9:11 am, Ejah wrote: > Hi, > You must add your app to the installed apps. Editting through the > admin requires you to register an admin form for your profile. Syncdb > and

Re: Editing custom user profiles information in the admin panel

2012-04-06 Thread Ejah
Hi, You must add your app to the installed apps. Editting through the admin requires you to register an admin form for your profile. Syncdb and you can edit. Hth On 6 apr, 05:56, abisson wrote: > Good evening, > > I just tried the followinghttps://docs.djangoproject.com/en/1.4/topics/auth/ > in o

Editing custom user profiles information in the admin panel

2012-04-06 Thread abisson
Good evening, I just tried the following https://docs.djangoproject.com/en/1.4/topics/auth/ in order to add some custom fields to my users. I just looked in the DB and admin panel, and these new fields were not added to the auth_user table, nor the User Admin Panel. I created a new app that contai