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?
--~--~---------~--~----~------------~-------~--~----~
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