検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 207 for user (0.055 sec.)
設定 — Django 4.0.6 ドキュメント 6796
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... iration time is to avoid problems in the case of a user closing a browser or bookmarking a page and then l ... ルト値: False Whether to store the CSRF token in the user's session instead of in a cookie. It requires the ... e (intended for developers or logging, not for end users) indicating the reason the request was rejected. ... db.backends.postgresql' , 'NAME' : 'mydatabase' , 'USER' : 'mydatabaseuser' , 'PASSWORD' : 'mypassword' , ...
https://man.plustar.jp/django/ref/settings.html - [similar]
Django 1.6.6 release notes — Django 4.0.6 ドキュメント 6733
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... two slashes), which could unexpectedly redirect a user to a different host. An attacker could exploit thi ... s, for example, by redirecting users to a phishing site designed to ask for user's pas ... time. The net result is that given enough time, a user with the ability to upload files can cause poor pe ... lowed by a number (e.g. "_1" , "_2" , etc.). RemoteUserMiddleware session hijacking ¶ When using the Remot ...
https://man.plustar.jp/django/releases/1.6.6.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 6669
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . Django's authentication framework uses it to tie user permissions to specific models. The ContentType mo ... example, we could look up the ContentType for the User model: >>> from django.contrib.contenttypes.models ... import ContentType >>> user_type = ContentType . objects . get ( app_label = ' ... auth' , model = 'user' ) >>> user_type <ContentType: user> And then use ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
Django 1.2 リリースノート — Django 4.0.6 ドキュメント 6605
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n against Cross-Site Request Forgery (CSRF). A new user "messages" framework with support for cookie- and ... based message for both anonymous and authenticated users. Hooks for object-level permissions , permissions ... for anonymous users , and more flexible username requirements . Custo ... ul of features have changed in ways that, for some users, will be backwards-incompatible. The big changes ...
https://man.plustar.jp/django/releases/1.2.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 6509
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o ( /admin/ , by default). If you need to create a user to login with, use the createsuperuser command. By ... default, logging in to the admin requires that the user has the is_staff attribute set to True . Finally, ... 参照できます。たとえば: class PersonAdmin ( admin . UserAdmin ): list_filter = ( 'company__name' ,) django. ... ups ( self , request , model_admin ): if request . user . is_superuser : return super () . lookups ( reque ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Django's cache framework — Django 4.0.6 ドキュメント 6477
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ic websites is, well, they're dynamic. Each time a user requests a page, the web server makes all sorts of ... itional hiredis-py package is also recommended. To use Redis as your cache backend with Django: Set BACKEN ... rotected with authentication. In order to supply a username and password, add them in the LOCATION along w ... backends.redis.RedisCache' , 'LOCATION' : 'redis://username:password@127.0.0.1:6379' , } } If you have mul ...
https://man.plustar.jp/django/topics/cache.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 6382
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n available to all models. For example, here's the user module from Django's built-in django.contrib.auth ... ning your action, you should gracefully inform the user of the problem. This means handling exceptions and ... using django.contrib.admin.ModelAdmin.message_user() to display a user friendly description of the pr ... example, we can use self to flash a message to the user informing them that the action was successful: fro ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
モデルフィールドリファレンス — Django 4.0.6 ドキュメント 6382
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... escape any help text that may come from untrusted users to avoid a cross-site scripting attack. primary_k ... en determining the final destination path. 例: def user_directory_path ( instance , filename ): # file wil ... l be uploaded to MEDIA_ROOT/user_<id>/<filename> return 'user_ {0} / {1} ' . format ... ( instance . user . id , filename ) class MyModel ( models . Model ) ...
https://man.plustar.jp/django/ref/models/fields.html - [similar]
索引 — Django 4.0.6 ドキュメント 6318
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eatecachetable コマンドラインオプション createsuperuser コマンドラインオプション dbshell コマンドラインオプ ... ations コマンドラインオプション --email createsuperuser コマンドラインオプション --empty makemigrations コ ... collectstatic コマンドラインオプション createsuperuser コマンドラインオプション flush コマンドラインオプシ ... collectstatic コマンドラインオプション createsuperuser コマンドラインオプション flush コマンドラインオプシ ...
https://man.plustar.jp/django/genindex.html - [similar]
django.core.mail — Django 4.0.6 ドキュメント 6286
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... il , recipient_list , fail_silently = False , auth_user = None , auth_password = None , connection = None ... None, use the DEFAULT_FROM_EMAIL setting. If auth_user is None, use the EMAIL_HOST_USER setting. If auth_ ... y. """ connection = connection or get_connection ( username = auth_user , password = auth_password , fail_ ... ss_mail ( datatuple , fail_silently = False , auth_user = None , auth_password = None , connection = None ...
https://man.plustar.jp/django/_modules/django/core/mail.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT