- Language: en
52 results for login in version 1.8
-
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 …
-
Django 1.3 release notes
- … login methods of the admin In previous version the admin app defined login methods in multiple …
-
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_url : login_url = settings . LOGIN_URL login_url = resolve_url ( login_url ) return logout …
-
django.contrib.auth.decorators
- … login_url = resolve_url ( login_url or settings . LOGIN_URL ) # If the login url is the same …
-
Testing tools
- … login as this method is meant to be equivalent to the login() view which uses …
-
django.contrib.admin.sites
- … login return redirect_to_login ( request . get_full_path (), reverse ( 'admin:login' , current …
-
Customizing authentication in Django
- … login_valid = ( settings . ADMIN_LOGIN == username ) pwd_valid = check_password ( password , settings . ADMIN_PASSWORD ) if login …
-
Introduction to class-based views
- … login_required() you could implement a mixin like this: from django.contrib.auth.decorators import login_required class …
-
django.contrib.auth.forms
- … login' ], code = 'invalid_login' , params = { 'username' : self . username_field . verbose …