Re: Trouble overriding UserAdmin

2009-03-03 Thread Brandon Taylor
Hi Alex, Actually, the 'user_profile' app is the last one in my list. I can't explain why it works on a previously developed site using Django trunk and not this one. Brandon On Mar 3, 11:54 am, Alex Gaynor wrote: > On Tue, Mar 3, 2009 at 12:41 PM, Brandon Taylor > wrote: > > > > > > > Hi eve

Re: Trouble overriding UserAdmin

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 12:54 PM, Alex Gaynor wrote: > > > On Tue, Mar 3, 2009 at 12:41 PM, Brandon Taylor > wrote: > >> >> Hi everyone, >> >> Not sure what's up here, the same code works on another site. >> Basically what I'm doing is adding an inline model form to the User >> change form... >>

Re: Trouble overriding UserAdmin

2009-03-03 Thread Alex Gaynor
On Tue, Mar 3, 2009 at 12:41 PM, Brandon Taylor wrote: > > Hi everyone, > > Not sure what's up here, the same code works on another site. > Basically what I'm doing is adding an inline model form to the User > change form... > > from django.db import models > from django.contrib import admin > fro

Trouble overriding UserAdmin

2009-03-03 Thread Brandon Taylor
Hi everyone, Not sure what's up here, the same code works on another site. Basically what I'm doing is adding an inline model form to the User change form... from django.db import models from django.contrib import admin from django.contrib.auth.models import User from django.contrib.auth.admin i