検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 239 for default (0.083 sec.)
Django 2.1.5 リリースノート — Django 4.0.6 ドキュメント 5808
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... CVE-2019-3498: Content spoofing possibility in the default 404 page ¶ An attacker could craft a malicious URL ... that could make spoofed content appear on the default page generated by the django.views.defaults.page_n ... ) view. The URL path is no longer displayed in the default 404 template and the request_path context variable ... CVE-2019-3498: Content spoofing possibility in the default 404 page Bugfixes 前のトピックへ Django 2.1.6 リリ ...
https://man.plustar.jp/django/releases/2.1.5.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 5777
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ther than ignoring them. django.contrib.auth ¶ The default iteration count for the PBKDF2 password hasher has ... ib.auth.hashers.PBKDF2PasswordHasher to change the default value. The BCryptSHA256PasswordHasher will now upd ... mand creates an apps.py file. Since it doesn't use default_app_config ( a discouraged API ), you must specify ... ows details of chained exceptions on Python 3. The default 40x error views now accept a second positional par ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 5666
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ication. A flatpage can use a custom template or a default, systemwide flatpage template. It can be associate ... mplate. Otherwise, it loads the template flatpages/default.html . It passes that template a single context va ... nd used in your own views. Flatpage templates ¶ By default, flatpages are rendered via the template flatpages ... /default.html , but you can override that for a particular ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
How to create database migrations — Django 4.0.6 ドキュメント 5564
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ditor ): if schema_editor . connection . alias != 'default' : return # Your migration code goes here class Mi ... . RunPython ( forwards , hints = { 'target_db' : 'default' }), ] If your RunPython or RunSQL operation only ... example, we'll add a non-nullable UUIDField with a default value. Modify the respective field according to yo ... ur needs. Add the field on your model with default=uuid.uuid4 and unique=True arguments (choose an ap ...
https://man.plustar.jp/django/howto/writing-migrations.html - [similar]
Simple mixins — Django 4.0.6 ドキュメント 5523
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as the using keyword argument to response_class . Default is None , which tells Django to search for the tem ... class to be returned by render_to_response method. Default is TemplateResponse . The template and context of ... s passed as a keyword argument to response_class . Default is None -- meaning that Django uses 'text/html' . ... The first template that is found will be used. The default implementation will return a list containing templ ...
https://man.plustar.jp/django/ref/class-based-views/mixins-simple.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 5523
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ンプレートで有効になります。 If you're not using the default project template, here are the requirements: Add ' ... visiting the URL you hooked it into ( /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 ha ... うに動作しますが、 autodiscover() を呼び出しません。 default_site ¶ これはデフォルトの admin サイトのクラスやサ ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 5523
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ecify the length of each index entry. PostgreSQL's default is 80. The columns argument takes a tuple or list ... e how packed the index pages will be. PostgreSQL's default is 90. Changed in Django 3.2: Positional argument ... le the GIN Fast Update Technique that's enabled by default in PostgreSQL. Provide an integer number of bytes ... e how packed the index pages will be. PostgreSQL's default is 90. Changed in Django 3.2: Positional argument ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
テストツール — Django 4.0.6 ドキュメント 5523
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ks = False , json_encoder = DjangoJSONEncoder , ** defaults ) ¶ It requires no arguments at time of construct ... ver, you can use keyword arguments to specify some default headers. For example, this will send a User-Agent ... to get() , post() , etc. have precedence over the defaults passed to the class constructor. enforce_csrf_che ... ing the request should also be raised in the test. Defaults to True . Client インスタンスを一度作れば、以下の ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
Django 1.10.1 release notes — Django 4.0.6 ドキュメント 5493
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Fixed a checks framework crash with an empty Meta.default_permissions ( #26997 ). Fixed a regression in the ... migrations skip inconsistent history checks on non-default databases if database routers aren't in use or if ... egression in model forms where model fields with a default that didn't appear in POST data no longer used the ... default ( #27039 ). 目次 Django 1.10.1 release notes Bugfi ...
https://man.plustar.jp/django/releases/1.10.1.html - [similar]
Django Deprecation Timeline — Django 4.0.6 ドキュメント 5452
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... go.utils.datetime_safe module will be removed. The default value of the USE_TZ setting will change from False ... to True . The default sitemap protocol for sitemaps built outside the co ... ore.validators.EmailValidator will be removed. The default_app_config module variable will be removed. Transa ... % ifnotequal %} template tags will be removed. The DEFAULT_HASHING_ALGORITHM transitional setting will be rem ...
https://man.plustar.jp/django/internals/deprecation.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT