Results of 1 - 10 of about 51 for username (0.025 sec.)
- Django の認証方法のカスタマイズ — Django 4.0.6 ドキュメント 14043
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
BaseBackend ): def authenticate ( self , request , username = None , password = None ): # Check the username/p ...
3iq8Dr4M=' """ def authenticate ( self , request , username = None , password = None ): login_valid = ( settin ...
gs . ADMIN_LOGIN == username ) pwd_valid = check_password ( password , settings ...
nd pwd_valid : try : user = User . objects . get ( username = username ) except User . DoesNotExist : # Create ...
-
https://man.plustar.jp/django/topics/auth/customizing.html
- [similar]
- django.contrib.auth — Django 4.0.6 ドキュメント 13743
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
User オブジェクトには、以下のフィールドがあります: username ¶ 必須です。150 文字以下です。英数字のほか、 _ 、 ...
ましいと言えます。 メソッド ¶ class models. User get_username () ¶ ユーザのユーザ名を返します。 User モデルはスワ ...
有する独自のマネージャを持っています: create_user ( username , email = None , password = None , ** extra_fields ...
) ¶ User を作成、保存して返します。 The username and password are set as given. The domain portion ...
-
https://man.plustar.jp/django/ref/contrib/auth.html
- [similar]
- Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 9861
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
。 デフォルトのユーザの主要な属性は次のとおりです。 username password email first_name last_name 仕様については ...
user command: $ python manage.py createsuperuser --username=joe --email=joe@example.com パスワードを入力するよ ...
促されます。入力後、ただちにユーザが作成されます。 --username または --email オプションを使用しなければ、これらの ...
かのオプションがあります。 manage.py changepassword *username* は、コマンドラインからユーザのパスワードを変更する ...
-
https://man.plustar.jp/django/topics/auth/default.html
- [similar]
- Django 1.3.4 release notes — Django 4.0.6 ドキュメント 9352
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
HttpRequest.get_host() -- was incorrectly handling username/password information in the header. Thus, for exam ...
ich contain potentially dangerous content (such as username/password pairs) now raise the exception django.cor ...
ーワード release , notes , header , Host , parsing , username , which , URLs , users , such クイック検索 Last up ...
-
https://man.plustar.jp/django/releases/1.3.4.html
- [similar]
- Model _meta API — Django 4.0.6 ドキュメント 9052
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
field on the model >>> User . _meta . get_field ( 'username' ) <django.db.models.fields.CharField: username> # ...
is_superuser>, <django.db.models.fields.CharField: username>, <django.db.models.fields.CharField: first_name>, ...
is_superuser>, <django.db.models.fields.CharField: username>, <django.db.models.fields.CharField: first_name>, ...
-
https://man.plustar.jp/django/ref/models/meta.html
- [similar]
- PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 8437
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
he operator class . 例: Index ( OpClass ( Lower ( 'username' ), name = 'varchar_pattern_ops' ), name = 'lower_ ...
username_idx' , ) creates an index on Lower('username') using varchar_pattern_ops . Another example: Uni ...
-
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html
- [similar]
- Constraints reference — Django 4.0.6 ドキュメント 8332
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
n the index. 例: UniqueConstraint ( name = 'unique_username' , fields = [ 'username' ], opclasses = [ 'varchar ...
_pattern_ops' ]) creates a unique index on username using varchar_pattern_ops . opclasses are ignored ...
-
https://man.plustar.jp/django/ref/models/constraints.html
- [similar]
- django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 8123
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
views . index , name = 'main-view' ), path ( 'bio/<username>/' , views . bio , name = 'bio' ), path ( 'article ...
tern. The string may contain angle brackets (like <username> above) to capture part of the URL and send it as ...
. index , name = 'index' ), re_path ( r '^bio/(?P<username>\w+)/$' , views . bio , name = 'bio' ), re_path ( ...
-
https://man.plustar.jp/django/ref/urls.html
- [similar]
- Django 1.4.2 release notes — Django 4.0.6 ドキュメント 8123
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
HttpRequest.get_host() -- was incorrectly handling username/password information in the header. Thus, for exam ...
ich contain potentially dangerous content (such as username/password pairs) now raise the exception django.cor ...
-
https://man.plustar.jp/django/releases/1.4.2.html
- [similar]
- Django 2.0.3 リリースノート — Django 4.0.6 ドキュメント 8033
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
query ( #29172 ). Fixed AbstractBaseUser.normalize_username() crash if the username argument isn't a string ( ...
-
https://man.plustar.jp/django/releases/2.0.3.html
- [similar]