- Language: en
71 results for login in version 4.2
-
Password management in Django
- … login request for a user with a password encoded in a non-default algorithm and the duration …
-
Porting your apps from Django 0.96 to 1.0
- … LOGIN_URL has moved The LOGIN_URL constant moved from django.contrib.auth into the settings module …
-
How to authenticate using REMOTE_USER
- … login that user using the RemoteUserBackend . Be aware that this particular setup disables authentication with …
-
Django 1.5.5 release notes
- … login This behavior introduced as a security hardening measure in Django 1.5.2 did not work …
-
django.contrib.auth.views
- … login page. """ login_url = resolve_url ( login_url or settings . LOGIN_URL ) return …
-
django.contrib.auth.decorators
- … login_url = resolve_url ( login_url or settings . LOGIN_URL ) # If the login url is the same …
-
Testing tools
- … login ...\> manage.py test myapp.tests.MySeleniumTests.test_login This example will automatically open Firefox then go to the login …
-
django.contrib.auth.middleware
- … login_url = getattr ( view_func , "login_url" , None ) or settings . LOGIN_URL if not login …
-
django.contrib.auth.mixins
- … login_url attribute. """ login_url = self . login_url or settings . LOGIN_URL if not login …
-
django.contrib.admin.sites
- … login return redirect_to_login ( request . get_full_path (), reverse ( "admin:login" , current …