検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 134 for INCLUDE (0.026 sec.)
URL ディスパッチャ — Django 4.0.6 ドキュメント 12336
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... use angle brackets. Captured values can optionally include a converter type. For example, use <int:name> to c ... apture an integer parameter. If a converter isn't included, any string, excluding a / character, is matched. ... or, '/' . This is the default if a converter isn't included in the expression. int - Matches zero or any posi ... URLs from mapping to the same page, dashes must be included and letters must be lowercase. For example, 07519 ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 11818
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... urlpatterns . For example: from django.urls import include , path urlpatterns = [ path ( 'index/' , views . i ... ion , name = 'article-section' ), path ( 'blog/' , include ( 'blog.urls' )), ... ] The route argument should ... yword argument to the view. The angle brackets may include a converter specification (like the int part of <i ... r class-based views. It can also be an django.urls.include() . The kwargs argument allows you to pass additio ...
https://man.plustar.jp/django/ref/urls.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 10262
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ocument explains the API references of Index which includes the index options . Referencing built-in indexes ... space = None , opclasses = () , condition = None , include = None ) ¶ Creates an index (B-Tree) in the databa ... d MariaDB as neither supports conditional indexes. include ¶ Index. include ¶ New in Django 3.2. A list or tu ... ple of the names of the fields to be included in the covering index as non-key columns. This al ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]
Model _meta API — Django 4.0.6 ドキュメント 10262
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... field instances of a model ¶ Options. get_fields ( include_parents = True , include_hidden = False ) ¶ Return ... can be used to control which fields are returned: include_parents True by default. Recursively includes fiel ... ses are considered to be local, not on the parent. include_hidden False by default. If set to True , get_fiel ... ds() will include fields that are used to back other field's functio ...
https://man.plustar.jp/django/ref/models/meta.html - [similar]
Constraints reference — Django 4.0.6 ドキュメント 9575
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... me = None , condition = None , deferrable = None , include = None , opclasses = () ) ¶ Creates a unique const ... ue constraints may lead to a performance penalty . include ¶ UniqueConstraint. include ¶ New in Django 3.2. A ... list or tuple of the names of the fields to be included in the covering unique index as non-key columns. ... only scans to be used for queries that select only included fields ( include ) and filter only by unique fiel ...
https://man.plustar.jp/django/ref/models/constraints.html - [similar]
PostgreSQL specific database constraints — Django 4.0.6 ドキュメント 8972
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pe = None , condition = None , deferrable = None , include = None , opclasses = () ) ¶ Creates an exclusion c ... on constraints may lead to a performance penalty . include ¶ ExclusionConstraint. include ¶ New in Django 3.2 ... . A list or tuple of the names of the fields to be included in the covering exclusion constraint as non-key c ... only scans to be used for queries that select only included fields ( include ) and filter only by indexed fie ...
https://man.plustar.jp/django/ref/contrib/postgres/constraints.html - [similar]
高度なチュートリアル: 再利用可能アプリの書き方 — Django 4.0.6 ドキュメント 8369
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の方法はすでに会得済みです。 チュートリアル1 では、 include を使ってプロジェクトレベルの URLconf から投票アプリ ... g like this:: INSTALLED_APPS = [ ... 'polls', ] 2. Include the polls URLconf in your project urls.py like thi ... s:: path('polls/', include('polls.urls')), 3. Run ``python manage.py migrate` ... Internet :: WWW/HTTP :: Dynamic Content [options] include_package_data = true packages = find: python_requir ...
https://man.plustar.jp/django/intro/reusable-apps.html - [similar]
Django 1.4.7 release notes — Django 4.0.6 ドキュメント 7850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ns of Django it was possible to bypass the ALLOWED_INCLUDE_ROOTS setting used for security with the ssi templ ... one of the allowed roots. For example, if ALLOWED_INCLUDE_ROOTS = ("/var/www",) the following would be possi ... evious , template , possible , traversal , would , INCLUDE , ALLOWED , In クイック検索 Last update: 2022年6月 ...
https://man.plustar.jp/django/releases/1.4.7.html - [similar]
はじめての Django アプリ作成、その 1 — Django 4.0.6 ドキュメント 7681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tweight web server written purely in Python. We've included this with Django so you can develop things rapidl ... を反映させることです。 mysite/urls.py に django.urls.include のimportを追加して、 urlpatterns のリストに includ ... jango.contrib import admin from django.urls import include , path urlpatterns = [ path ( 'polls/' , include ( ... ls' )), path ( 'admin/' , admin . site . urls ), ] include() 関数は他の URLconf への参照することができます。 ...
https://man.plustar.jp/django/intro/tutorial01.html - [similar]
Django 1.9 リリースノート — Django 4.0.6 ドキュメント 7681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... イベントが追加されました。 The time picker widget includes a '6 p.m' option for consistency of having predef ... ) method. The django.template logger was added and includes the following messages: A DEBUG level message for ... ht exceptions raised during the rendering of an {% include %} when debug mode is off (helpful since {% includ ... ecursively. The debug page template postmortem now include output from each engine that is installed. Debug p ...
https://man.plustar.jp/django/releases/1.9.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT