検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 123 for context (0.053 sec.)
mixinを編集する — Django 4.0.6 ドキュメント 6699
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... xinクラス。 ミックスイン django.views.generic.base.ContextMixin メソッドと属性 initial ¶ フォームの初期化デー ... Renders a response, providing the invalid form as context. get_context_data ( ** kwargs ) ¶ Calls get_form() ... and adds the result to the context data with the name 'form'. ModelFormMixin ¶ class ... Renders a response, providing the invalid form as context. ProcessFormView ¶ class django.views.generic.edit ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 6699
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... oxy models. New view variable in class-based views context ¶ In all generic class-based views (or any class-b ... ased view inheriting from ContextMixin ), the context dictionary contains a view var ... logger in your LOGGING setting). When using RequestContext , it is now possible to look up permissions by usi ... staticmethod or classmethod on the abstract class. Context in year archive class-based views ¶ For consistenc ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Base views — Django 4.0.6 ドキュメント 6502
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... se.TemplateResponseMixin django.views.generic.base.ContextMixin django.views.generic.base.View メソッドのフロ ... ト setup() dispatch() http_method_not_allowed() get_context_data() Example views.py : from django.views.generi ... emplateView ): template_name = "home.html" def get_context_data ( self , ** kwargs ): context = super () . ge ... t_context_data ( ** kwargs ) context [ 'latest_articles' ] = ...
https://man.plustar.jp/django/ref/class-based-views/base.html - [similar]
テストツール — Django 4.0.6 ドキュメント 6465
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... レンダリングされる際の最終的なページコンテンツです。 context ¶ テンプレートの Context インスタンスです。レスポン ... 画されたページが複数のテンプレートを使っていた場合、 context は``Context`` オブジェクトのリストとなり、その順序 ... response = client . get ( '/foo/' ) >>> response . context [ 'name' ] 'Arthur' Django のテンプレートを使ってい ... されます。他のテンプレートエンジンを使っている場合、 context_data がこの属性を扱うレスポンスの適切な選択肢となる ...
https://man.plustar.jp/django/topics/testing/tools.html - [similar]
django.utils.translation — Django 4.0.6 ドキュメント 6428
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... スコード """ Internationalization support. """ from contextlib import ContextDecorator from decimal import ROU ... , plural , number ) [ドキュメント] def pgettext ( context , message ): return _trans . pgettext ( context , ... message ) [ドキュメント] def npgettext ( context , singular , plural , number ): return _trans . np ... gettext ( context , singular , plural , number ) gettext_lazy = lazy ...
https://man.plustar.jp/django/_modules/django/utils/translation.html - [similar]
フォーム — Django 4.0.6 ドキュメント 6428
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -level render API Built-in-template form renderers Context available in formset templates Context available i ... n form templates Context available in widget templates Overriding built-in ... , templates , データ , built , factory , formset , Context , トピック , フィールド クイック検索 Last update: ...
https://man.plustar.jp/django/ref/forms/index.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 6428
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... eld will be interpreted. Using database cursors as context managers ¶ Prior to Python 2.7, database cursors c ... ould be used as a context manager. The specific backend's cursor defined the ... behavior of the context manager. The behavior of magic method lookups was ... th Python 2.7 and cursors were no longer usable as context managers. Django 1.7 allows a cursor to be used as ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Generic date ビュー — Django 4.0.6 ドキュメント 6366
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... れ、降順で表示されます。 ノート デフォルトの 最新 の context_object_name を使います。 デフォルトの _archive の ... the list of objects will be made available to the context. If False , the None queryset will be used as the ... if an object list will be returned as part of the context. Returns make_object_list by default. コンテキスト ... .generic.base.View コンテキスト In addition to the context provided by MultipleObjectMixin (via BaseDateListV ...
https://man.plustar.jp/django/ref/class-based-views/generic-date-based.html - [similar]
非同期サポート — Django 4.0.6 ドキュメント 6329
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e other call style to allow your code to run. This context-switch causes a small performance penalty of aroun ... are. Django will attempt to minimize the number of context-switches between sync and async. If you have an AS ... code to not call the offending code from an async context. Instead, write your code that talks to async-unsa ... of running sync code in its own thread). The async context can be imposed upon you by the environment in whic ...
https://man.plustar.jp/django/topics/async.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 6267
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... end in your TEMPLATES setting with django.template.context_processors.request , django.contrib.auth.context_p ... rocessors.auth , and django.contrib.messages.context_processors.messages in the 'context_processors' op ... _urls + urls def my_view ( self , request ): # ... context = dict ( # Include common variables for rendering ... the admin template. self . admin_site . each_context ( request ), # Anything else you want in the conte ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT