[Answer]-Extend the user profile django 1.5 but retain Django's admin.py format

1👍

This is explicitly possible in Django 1.5+, by subclassing AbstractBaseUser and setting AUTH_USER_MODEL to point to your model. See the documentation.

Leave a comment