On Jan 29, 12:00 pm, JonUK <jdo...@flinttechnology.co.uk> wrote:
> I'm creating a new admin UI for User, separate to the standard admin
> User interface - I have the following setup:
>
> class WebsiteUser( User ):
>     class Meta:
>         db_table = 'auth_user'
>
> class WebsiteUserAdmin( admin.ModelAdmin ):
>     list_display = ( 'username', )
>
> admin.site.register( WebsiteUser, WebsiteUserAdmin )
>
> When I view this, the admin list page correctly summarises "1 website
> user", however it has no rows.
>
> Any ideas?

Ideas? Yes: don't do that.
If you just want to override the admin for User, then unregister the
admin class for that model and re-register your own. Subclassing like
this is bound to lead to all sorts of issues.

admin.site.unregister(User)
admin.site.register(User, MyCustomUserAdmin)

Or if you really want to duplicate the user admin while leaving the
original one intact, look into setting up multiple Admin sites:
http://docs.djangoproject.com/en/dev/ref/contrib/admin/#adminsite-objects
--
DR.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@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