Top "Django-custom-user" questions

Tag for questions related to custom User model functionality introduced in Django 1.6

Using Django auth UserAdmin for a custom user model

From the Django.Contrib.Auth docs: Extending Django’s default User If you’re entirely happy with Django’s User …

django django-models django-admin django-authentication django-custom-user
TypeError: create_superuser() missing 1 required positional argument: 'profile_picture'

I get the following error after adding the profile_picture field: TypeError: create_superuser() missing 1 required positional argument: 'profile_picture' …

python django typeerror django-custom-user django-custom-manager
Custom user in django raises ValueError

Even this simple example throws a ValueError: Dependency on app with no migrations: myApp during python manage.py syncdb myApp/…

python django django-1.7 django-custom-user
login() missing 1 required positional argument: 'user'

Here is my view, def login_view(request) : if request.method == 'POST': form = LoginForm(request.POST) if form.is_valid(): …

python django django-login django-custom-user