Top "Django-authentication" questions

django-authentication refers to the built-in auth module for authentication & authorization that can be extended.

Django - user permissions to certain views?

From the admin I see that you can allocate permissions to a user or a user group to :allow add, …

python django django-authentication django-permissions django-login
Enforcing password strength requirements with django.contrib.auth.views.password_change

We have a Django application that requires a specific level of password complexity. We currently enforce this via client-side JavaScript …

django passwords django-authentication
Django - Override admin site's login form

I'm currently trying to override the default form used in Django 1.4 when logging in to the admin site (my site …

django django-admin django-authentication
Django create custom UserCreationForm

I enabled the user auth module in Django, however when I use UserCreationForm it only asks for username and the …

python django django-authentication
login Page by using django forms

I am New beginner in python and django... i want to know how can i create a login form by …

django django-forms django-authentication
how to create a group permission in django

I am attempting to create a row in the auth_group_permission table. I have tried the following: group_permission = …

django django-models django-authentication
Why second user login redirects me to /accounts/profile/ url?

I am using Django built in view for user login: url(r'^user/login/$', 'django.contrib.auth.views.login', {…

django django-authentication
Users in initial data fixture

I'm creating a few users by default in my fixtures/initial_data.json so as to have some testing "subjects." …

django django-models django-authentication
RelatedObjectDoesNotExist: User has no userprofile

So I've extended my user with the field score like this: models.py: class UserProfile(models.Model): user = models.OneToOneField(…

python django django-authentication
Log in user using either email address or username in Django

I am trying to create an auth backend to allow my users to log in using either their email address …

python django django-authentication django-login