Greetings I've a model class MyUser(auth.User): location = meta.CharField(maxlength=100, blank=True)
class META: replaces_module = 'auth.users' admin = meta.Admin( list_display = ('username', 'email', 'first_name','last_name', 'lacation') ) looks fine, but, after add a new myUser (successfully) my user list it's empty just like a list_display = ('') what is wrong? Thanks --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---