django.contrib.auth.models.User

I don't like models.User, but I like Admin view, and I will keep admin
view in my application.

How to overwirte models.User

Make it just look like following

class ShugeUser(User)
    username = EmailField(uniqute=True, verbose_name='EMail as your
username', ...)
    email = CharField(verbose_name='Nickname, ...)

User = ShugeUser


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