検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 219 for list (0.024 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 9889
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rt admin class AuthorAdmin ( admin . ModelAdmin ): list_display = ( 'name' , 'title' , 'view_birth_date' ) ... オプションを参照してください。 fields オプションは、 list_display と同じタイプの値を受け付けますが、呼び出し ... ts_with_inlines() を参照してください。 ModelAdmin. list_display ¶ admin のチェンジリストページでどのフィー ... ルドを表示するかコントロールするために、 list_display をセットします。 実装例: list_display = ( ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
django.core.paginator — Django 4.0.6 ドキュメント 9617
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tion import gettext_lazy as _ class UnorderedObjectListWarning ( RuntimeWarning ): pass [ドキュメント] cla ... ELLIPSIS = _ ( "…" ) def __init__ ( self , object_list , per_page , orphans = 0 , allow_empty_first_page ... = True ): self . object_list = object_list self . _check_object_list_is_ordered ... lf . count return self . _get_page ( self . object_list [ bottom : top ], number , self ) def _get_page ( ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 9492
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... fields.E004 : choices must be an iterable (e.g., a list or tuple). fields.E005 : choices must be an iterab ... ther field. models.E008 : index_together must be a list or tuple. models.E009 : All index_together element ... s must be lists or tuples. models.E010 : unique_together must be ... a list or tuple. models.E011 : All unique_together elemen ...
https://man.plustar.jp/django/ref/checks.html - [similar]
django.core.exceptions — Django 4.0.6 ドキュメント 9377
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sOperation ): """Redirect to scheme not in allowed list""" pass class TooManyFieldsSent ( SuspiciousOperat ... "" The `message` argument can be a single error, a list of errors, or a dictionary that maps field names t ... o lists of errors. What we define as an "error" can be ei ... h its message attribute set, and what we define as list or dictionary can be an actual `list` or `dict` or ...
https://man.plustar.jp/django/_modules/django/core/exceptions.html - [similar]
Generic date ビュー — Django 4.0.6 ドキュメント 9262
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... トは含まれません。 継承元 (MRO) django.views.generic.list.MultipleObjectTemplateResponseMixin django.views.g ... rchiveIndexView django.views.generic.dates.BaseDateListView django.views.generic.list.MultipleObjectMixin ... コンテキスト ( django.views.generic.dates.BaseDateListView を通じた) django.views.generic.list.MultipleOb ... ンプレートのコンテキストは以下のようになります: date_list : queryset に従ってオブジェクトを利用可能にするすべ ...
https://man.plustar.jp/django/ref/class-based-views/generic-date-based.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 8948
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the date-based archive should use to determine the list of objects to display on the page. When time zone ... ate/time. Returns allow_future by default. BaseDateListView ¶ class BaseDateListView ¶ A base class that p ... won't normally be a reason to instantiate BaseDateListView ; instantiate one of the subclasses instead. W ... ew (and its subclasses) are executing, self.object_list will contain the list of objects that the view is ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
組み込みタグとフィルタ — Django 4.0.6 ドキュメント 8352
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... グは特にループ内で使うのが便利です: {% for o in some_list %} < tr class = " {% cycle 'row1' 'row2' %} " > .. ... 合には次のように書くことができます: {% for o in some_list %} < tr class = " {% cycle rowvalue1 rowvalue2 %} ... 出力する場合には次のようにします。 {% for o in some_list %} < tr class = " {% autoescape off %}{% cycle row ... 変数と文字列は混ぜて使用できます: {% for o in some_list %} < tr class = " {% cycle 'row1' rowvalue2 'row3' ...
https://man.plustar.jp/django/ref/templates/builtins.html - [similar]
Multiple object mixins — Django 4.0.6 ドキュメント 8321
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ¶ MultipleObjectMixin ¶ class django.views.generic.list. MultipleObjectMixin ¶ オブジェクトのリストを表示す ... s a 4-tuple containing ( paginator , page , object_list , is_paginated ). Constructed by paginating querys ... captured URL argument or as a GET argument, object_list will correspond to the objects from that page. get ... t, this is True . get_context_object_name ( object_list ) ¶ このビューが操作しているデータのリストを格納す ...
https://man.plustar.jp/django/ref/class-based-views/mixins-multiple-object.html - [similar]
Generic display ビュー — Django 4.0.6 ドキュメント 8237
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... * args , ** kwargs ) ¶ Adds object to the context. List Views ¶ class django.views.generic.list. ListView ... ージです。 このビューが動作している間、 self.object_list はビューが操作しているオブジェクト (通常はクエリー ... メソッドと属性を継承しています: django.views.generic.list.MultipleObjectTemplateResponseMixin django.views.g ... ic.base.TemplateResponseMixin django.views.generic.list.BaseListView django.views.generic.list.MultipleObj ...
https://man.plustar.jp/django/ref/class-based-views/generic-display.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 7997
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... さにこの理由から count() メソッドを提供しています。 list()。 list() を呼び出すことで、 QuerySet の評価を矯正 ... します。たとえば: entry_list = list ( Entry . objects . all ()) bool(). Testing ... as described here. Restrictions on QuerySet.values_list() If you recreate QuerySet.values_list() using the ... >>> import pickle >>> qs = Blog . objects . values_list ( 'id' , 'name' ) >>> qs <QuerySet [(1, 'Beatles B ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT