| python Programming Glossary: django.contrib.auth.adminExtending the user profile in Django. Admin creation of users http://stackoverflow.com/questions/10213020/extending-the-user-profile-in-django-admin-creation-of-users  a lot in admin.py from django.contrib import admin from django.contrib.auth.admin import UserAdmin as DjangoUserAdmin from django.contrib.auth.models.. 
 How to customize the auth.User Admin page in Django CRUD? http://stackoverflow.com/questions/2270537/how-to-customize-the-auth-user-admin-page-in-django-crud    I finally did like this in my admin.py file from django.contrib.auth.admin import UserAdmin from django.contrib.auth.models import User.. 
 Django - User, UserProfile, and Admin http://stackoverflow.com/questions/4565814/django-user-userprofile-and-admin  admin from django.contrib.auth.models import User from django.contrib.auth.admin import UserAdmin admin.site.unregister User class UserProfileInline.. admin from django.contrib.auth.models import User from django.contrib.auth.admin import UserAdmin from accounts.models import UserProfile admin.site.unregister.. 
 Customizing an Admin form in Django while also using autodiscover http://stackoverflow.com/questions/471550/customizing-an-admin-form-in-django-while-also-using-autodiscover  all DRY as can be from django.contrib import admin from django.contrib.auth.admin import UserAdmin from django.contrib.auth.models import User.. 
 How can I have Django user registration single step (instead of two step)process with email compulsory? http://stackoverflow.com/questions/6628452/how-can-i-have-django-user-registration-single-step-instead-of-two-stepprocess  from django.contrib.auth.models import User Group from django.contrib.auth.admin import UserAdmin from django.contrib.auth.forms import UserCreationForm.. django.contrib.auth.forms import UserCreationForm from django.contrib.auth.admin import UserAdmin from django.contrib.auth.models import User.. 
 |