検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 219 for list (0.083 sec.)
PostgreSQL specific model indexes — Django 4.0.6 ドキュメント 5362
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fault is 80. The columns argument takes a tuple or list of up to 32 values that are integer number of bits ... ( * expressions , fastupdate = None , gin_pending_list_limit = None , ** options ) ¶ Creates a gin index ... vide an integer number of bytes to the gin_pending_list_limit parameter to tune the maximum size of the GI ... N pending list which is used when fastupdate is enabled. Changed ...
https://man.plustar.jp/django/ref/contrib/postgres/indexes.html - [similar]
バグレポートと機能のリクエスト — Django 4.0.6 ドキュメント 5331
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... bug report. All the tickets are mailed to another list, django-updates , which is tracked by developers a ... First request the feature on the django-developers list, not in the ticket tracker. It'll get read more cl ... osely if it's on the mailing list. This is even more important for large-scale featu ... ss any big changes to Django's core on the mailing list before actually working on them. Describe clearly ...
https://man.plustar.jp/django/internals/contributing/bugs-and-features.html - [similar]
GeoDjango Management Commands — Django 4.0.6 ドキュメント 5331
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e tutorial . --blank BLANK ¶ Use a comma separated list of OGR field names to add the blank=True keyword o ... fields. --decimal DECIMAL ¶ Use a comma separated list of OGR float fields to generate DecimalField inste ... ort statement. --null NULL ¶ Use a comma separated list of OGR field names to add the null=True keyword op ...
https://man.plustar.jp/django/ref/contrib/gis/commands.html - [similar]
TemplateResponse and SimpleTemplateResponse — Django 4.0.6 ドキュメント 5331
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... by get_template() ), the name of a template, or a list of template names. Example: ['foo.html', 'path/to/ ... by get_template() ), the name of a template, or a list of template names. context A dict of values to add ... by get_template() ), the name of a template, or a list of template names. Returns the backend-dependent t ... by get_template() ), the name of a template, or a list of template names. context A dict of values to add ...
https://man.plustar.jp/django/ref/template-response.html - [similar]
Django's cache framework — Django 4.0.6 ドキュメント 5331
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... as a semicolon or comma delimited string, or as a list. In this example, the cache is shared over Memcach ... as a semicolon or comma delimited string, or as a list. While using multiple servers, write operations ar ... ns that should be passed to the cache backend. The list of valid options will vary with each backend, and ... typo: the "update" middleware must be first in the list, and the "fetch" middleware must be last. The deta ...
https://man.plustar.jp/django/topics/cache.html - [similar]
はじめての Django アプリ作成、その 7 — Django 4.0.6 ドキュメント 5247
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ページをすこしいじりましょう。チェンジリスト (change list) は、システム上の全ての Question を表示するページで ... 合もあるでしょう。各フィールドの値を表示させるには、 list_display オプションを使います。このオプションには、 ... class QuestionAdmin ( admin . ModelAdmin ): # ... list_display = ( 'question_text' , 'pub_date' ) 念のため ... class QuestionAdmin ( admin . ModelAdmin ): # ... list_display = ( 'question_text' , 'pub_date' , 'was_pu ...
https://man.plustar.jp/django/intro/tutorial07.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 5247
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... %} tags. 実装例: {% blocktranslate count counter = list | length %} There is only one {{ name }} object. { ... get_available_languages as LANGUAGES %} returns a list of tuples in which the first element is the langua ... uage: {{ lang.name_translated }} get_language_info_list ¶ You can also use the {% get_language_info_list % ... } template tag to retrieve information for a list of languages (e.g. active languages as specified i ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
django.urls utility functions — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ad of args . For example: >>> reverse ( 'admin:app_list' , kwargs = { 'app_label' : 'auth' }) '/admin/auth ... ain 'users/<id>/' . tried ¶ New in Django 3.2. The list of URL patterns tried before the URL either matche ... URL pattern that matches the URL. app_names ¶ The list of individual namespace components in the full app ... URL pattern that matches the URL. namespaces ¶ The list of individual namespace components in the full ins ...
https://man.plustar.jp/django/ref/urlresolvers.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 5206
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... iting the columns that can be sorted in the change list page. The admin_order_field attribute for elements ... in ModelAdmin.list_display may now be a query expression. The new Mod ... delete selected" action. The actions.html , change_list_results.html , date_hierarchy.html , pagination.ht ... el (besides overridden globally). The admin change list and change form object tools can now be overridden ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 5174
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... junction with i18n generated URLs will each have a list of alternate links pointing to other language vers ... pages nor flatpages. The solution is to explicitly list URL names for these views in items and call revers ... ntext variables. 目次 ¶ The variable sitemaps is a list of absolute URLs to each of the sitemaps. Sitemap ... ¶ The variable urlset is a list of URLs that should appear in the sitemap. Each UR ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT