- Language: en
71 results for login in version 4.2
-
django.test.client
- … login ( user ) return True return False async def alogin ( self , ** credentials ): """See login …
-
django.contrib.auth.forms
- … login_error () else : self . confirm_login_allowed ( self . user_cache ) return self . cleaned_data [docs …
-
Introduction to class-based views
- … login_required() . In this example, every instance of ProtectedView will have login protection. These examples …
-
Customizing authentication in Django
- … login_valid = settings . ADMIN_LOGIN == username pwd_valid = check_password ( password , settings . ADMIN_PASSWORD ) if login …
-
Django 1.11 release notes
- … login() and logout() function-based views. The PasswordChangeView , PasswordChangeDoneView , PasswordResetView , PasswordResetDoneView , PasswordResetConfirmView , and PasswordResetCompleteView class …
-
Django 1.10 release notes
- … LOGIN_URL and LOGIN_REDIRECT_URL settings is removed. Support for optparse is dropped for custom …
-
How to use sessions
- … login as that user even if the user logs out. Cookies will only be detected …
-
django.contrib.auth
- … login_failed . asend ( sender = __name__ , credentials = _clean_credentials ( credentials ), request = request ) [docs] def login ( request …
-
django.contrib.admin.views.decorators
- … login_url = "admin:login" ): """ Decorator for views that checks that …
-
django.contrib.auth.tokens
- … login_timestamp = ( "" if user . last_login is None else user . last_login . replace …