- Language: en
9 results for login in the development version
-
Using the Django authentication system
- … login_required() decorator: from django.contrib.auth.decorators import login_required @login_required def my_view ( request ): ... login …
-
Password management in Django
- … login request for a user with a password encoded in a non-default algorithm and the duration …
-
Testing tools
- … login ( user , backend = None ) aforce_login ( user , backend = None ) Asynchronous version : aforce_login() If your …
-
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 …
-
How to use sessions
- … login as that user even if the user logs out. Cookies will only be detected …
-
URL dispatcher
- … login . If you have a custom login view and give its URL the name login …
-
Working with forms
- … login form for the Django admin contains several <input> elements: one of type …
-
User authentication in Django
- … login attempts Authentication against third-parties (OAuth, for example) Object-level permissions Installation Authentication support …