- Language: en
42 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 …
-
Testing tools
- … login as this method is meant to be equivalent to the login() view which uses …
-
Introduction to class-based views
- … login_required() you could implement a mixin like this: from django.contrib.auth.decorators import login_required class …
-
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 …
-
Writing your first Django app, part 2
- … login screen: Since translation is turned on by default, the login screen may be displayed …
-
Django 1.8.10 release notes
- … login request for a user with a password encoded in an older number of iterations …
-
Django version 0.96 release notes
- … login very easily: from django.conf.urls.defaults import * from django.contrib.auth.decorators import login_required from django.views.generic.list_detail import …