Looking into this a little deeper, it appears that from
django.contrib.auth.admin.UserAdmin uses
django.contrib.auth.models.User in the meta class. I've attempted to
point this to my app's proxy model by inheriting here as well:

-- forms.py --

from django.contrib.auth.forms import UserCreationForm as
DjangoUserCreationForm
from myapp.proxies import User

class UserCreationForm (DjangoUserCreationForm):
    class Meta:
        model = User

While this still hasn't solved the problem, I'm curious if the built-
in User model is more embedded than the layers I'm altering...

Franco

--

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


Reply via email to