¡@

Home 

python Programming Glossary: add_form

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

fields 'username' 'email' class UserAdmin admin.ModelAdmin add_form MyUserCreationForm admin.site.unregister User class MyUserAdmin.. admin.site.unregister User class MyUserAdmin UserAdmin add_form MyUserCreationForm add_fieldsets None 'classes' 'wide' 'fields'.. admin.py you'll see that the UserAdmin class specifies the add_form as UserCreationForm. UserCreationForm only includes the 'username'..