検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 65 for login (0.028 sec.)
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 16547
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 't use this. Rather if you're looking for a way to login a user, use the LoginView . 権限と認可 ¶ Django co ... ションにおいて認証を有効としたいユーザーがいる場合 - login() 関数によってそれを行う事ができます。 login ( req ... nd = None ) ¶ あるユーザーをログインさせる場合は、 login() を利用してください。この関数は HttpRequest オブジ ... ェクトと User オブジェクトを受け取ります。 login() は Django のセッションフレームワークを利用して、 ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
テストツール — Django 4.0.6 ドキュメント 11007
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ient >>> c = Client () >>> response = c . post ( '/login/' , { 'username' : 'john' , 'password' : 'smith' } ... ください。たとえば、次は正しいです。 >>> c . get ( '/login/' ) が、これは間違いです。 >>> c . get ( 'https:// ... www.example.com/login/' ) The test client is not capable of retrieving w ... ば、次の例では、 >>> c = Client () >>> c . post ( '/login/' , { 'name' : 'fred' , 'passwd' : 'secret' }) 引数 ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Django 1.11.10 リリースノート — Django 4.0.6 ドキュメント 9189
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngo 1.11.8 made AuthenticationForm run its confirm_login_allowed() method even if an incorrect password is ... n about a user, depending on what messages confirm_login_allowed() raises. If confirm_login_allowed() isn't ... user has been set to is_active=False . If confirm_login_allowed() is overridden, more sensitive details co ... 1.9 リリースノート 関連キーワード This , allowed , login , confirm , AuthenticationForm , backend , authent ...
https://man.plustar.jp/django/releases/1.11.10.html - [similar]
Django 2.0.2 リリースノート — Django 4.0.6 ドキュメント 9060
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ngo 1.11.8 made AuthenticationForm run its confirm_login_allowed() method even if an incorrect password is ... n about a user, depending on what messages confirm_login_allowed() raises. If confirm_login_allowed() isn't ... user has been set to is_active=False . If confirm_login_allowed() is overridden, more sensitive details co ... リリースノート 関連キーワード Fixed , regression , login , confirm , allowed , AuthenticationForm , This , ...
https://man.plustar.jp/django/releases/2.0.2.html - [similar]
Django 1.9.3 リリースノート — Django 4.0.6 ドキュメント 8373
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nput in some cases (e.g. django.contrib.auth.views.login() and i18n ) to redirect the user to an "on succes ... ver, it also creates a timing difference between a login request for a user with a password encoded in an o ... lder number of iterations and login request for a nonexistent user (which runs the def ... PBKDF2 in Django 1.4), the timing difference on a login request for these users may be even greater and th ...
https://man.plustar.jp/django/releases/1.9.3.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 8316
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... configure settings after having already used them. LOGIN_URL has moved ¶ The LOGIN_URL constant moved from ... . Instead of using from django.contrib.auth import LOGIN_URL refer to settings.LOGIN_URL . APPEND_SLASH beh ... b.contenttypes module. テスト ¶ django.test.Client.login() has changed ¶ Old (0.96): from django.test impor ... t Client c = Client () c . login ( '/path/to/login' , 'myuser' , 'mypassword' ) New ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
クラスベースビュー入門 — Django 4.0.6 ドキュメント 8173
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nfです: from django.contrib.auth.decorators import login_required , permission_required from django.views.g ... import VoteView urlpatterns = [ path ( 'about/' , login_required ( TemplateView . as_view ( template_name ... します。 from django.contrib.auth.decorators import login_required from django.utils.decorators import metho ... template_name = 'secret.html' @method_decorator ( login_required ) def dispatch ( self , * args , ** kwarg ...
https://man.plustar.jp/django/topics/class-based-views/intro.html - [similar]
Django 1.8.10 リリースノート — Django 4.0.6 ドキュメント 8101
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nput in some cases (e.g. django.contrib.auth.views.login() and i18n ) to redirect the user to an "on succes ... ver, it also creates a timing difference between a login request for a user with a password encoded in an o ... lder number of iterations and login request for a nonexistent user (which runs the def ... PBKDF2 in Django 1.4), the timing difference on a login request for these users may be even greater and th ...
https://man.plustar.jp/django/releases/1.8.10.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 7901
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... that 999 parameters per query isn't exceeded. The LOGIN_URL and LOGIN_REDIRECT_URL settings now also accep ... duplication. More information can be found in the login_required() documentation. Django now provides a mo ... ew signal that is emitted whenever a user fails to login successfully. See user_login_failed The new loadda ... s status code is 500. Email checks on failed admin login ¶ Prior to Django 1.5, if you attempted to log int ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 7844
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or stateful template tags The user_passes_test() , login_required() , and permission_required() , decorator ... site in their browser. A related type of attack, "login CSRF," where an attacking site tricks a user's bro ... this leakage no longer occurs. user_passes_test , login_required and permission_required ¶ django.contrib. ... auth.decorators provides the decorators login_required , permission_required and user_passes_tes ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
PREV 1 2 3 4 5 6 7 NEXT