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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---