検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 23 for mixin (0.011 sec.)
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 7607
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o. CIText fields ¶ class CIText ( ** options ) ¶ A mixin to create case-insensitive text fields backed by t ... '{thoughts,django}' . Several fields that use the mixin are provided: class CICharField ( ** options ) ¶ c ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
ミドルウェア (Middleware) — Django 4.0.6 ドキュメント 7607
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ードする ¶ class django.utils.deprecation. MiddlewareMixin ¶ Django provides django.utils.deprecation.Middlew ... areMixin to ease creating middleware classes that are compa ... with Django are compatible with both settings. The mixin provides an __init__() method that requires a get_ ... sponse() を直接呼び出します。 ほとんどの場合、この mixin を継承することで、旧式のミドルウェアと十分な下位互 ...
https://man.plustar.jp/django/topics/http/middleware.html - [similar]
Lookup API reference — Django 4.0.6 ドキュメント 7490
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... The lookup API has two components: a RegisterLookupMixin class that registers lookups, and the Query Expres ... act . Registration API ¶ Django uses RegisterLookupMixin to give a class the interface to register lookups ... ll Django transforms. class lookups. RegisterLookupMixin ¶ A mixin that implements the lookup API on a clas ...
https://man.plustar.jp/django/ref/models/lookups.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 7490
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... m_valid ( form ) メモ: FormView は TemplateResponseMixin を継承するため、ここでは template_name を使うことが ... 注釈 These views inherit SingleObjectTemplateResponseMixin which uses template_name_suffix to construct the t ... add the user: views.py ¶ from django.contrib.auth.mixins import LoginRequiredMixin from django.views.gener ... mport Author class AuthorCreateView ( LoginRequiredMixin , CreateView ): model = Author fields = [ 'name' ] ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
Django ドキュメント — Django 4.0.6 ドキュメント 7389
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ルトインの表示用ビュー | ビルトインの編集用ビュー | Mixin を使うには | API リファレンス | 索引 より高度なビュ ...
https://man.plustar.jp/django/index.html - [similar]
Base views — Django 4.0.6 ドキュメント 7389
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 全ての機能を提供するわけではありませんが、その場合は Mixins と汎用クラスベースビューが使えます。 多くの Djang ... ラスベースビューは、ほかのクラスベースビューや多種の mixin を継承しています。この継承チェーンは非常に重要なた ... ています: django.views.generic.base.TemplateResponseMixin django.views.generic.base.ContextMixin django.view ... _view (), name = 'home' ), ] コンテキスト ( ContextMixin を通じて) ビューに対応した URL パターンからキャプチ ...
https://man.plustar.jp/django/ref/class-based-views/base.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 7389
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the new context keyword. Customizable SingleObjectMixin URLConf kwargs ¶ Two new attributes, pk_url_kwarg ... nd slug_url_kwarg , have been added to SingleObjectMixin to enable the customization of URLconf keyword arg ... se Storage class used to take an obscure parameter mixin that allowed you to dynamically change the base cl ... s been removed. In the rare case you relied on the mixin parameter, you can easily achieve the same by over ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Generic date ビュー — Django 4.0.6 ドキュメント 7272
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o.views.generic.list.MultipleObjectTemplateResponseMixin django.views.generic.base.TemplateResponseMixin dj ... teListView django.views.generic.list.MultipleObjectMixin django.views.generic.dates.DateMixin django.views. ... を通じた) django.views.generic.list.MultipleObjectMixin によって提供されたコンテキストに加えて、テンプレー ... o.views.generic.list.MultipleObjectTemplateResponseMixin django.views.generic.base.TemplateResponseMixin dj ...
https://man.plustar.jp/django/ref/class-based-views/generic-date-based.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 7272
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... hs ( django.contrib.staticfiles.storage.HashedFilesMixin.patterns ) cover: The @import rule and url() state ... od to use your own hashing algorithm. ManifestFilesMixin ¶ class storage. ManifestFilesMixin ¶ Use this mix ... lesStorage ManifestStaticFilesStorage ManifestFilesMixin Finders Module Other Helpers Static file developme ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
クラスベースビュー入門 — Django 4.0.6 ドキュメント 7272
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ェネリックビューを構築するために使用する基底クラスと mixin のツールキットは、最大限の柔軟性を求めて構築されて ... ェネリッククラスベースのビューには、 TemplateResponseMixin と呼ばれるミックスインがあり、その主な目的はメソッ ... 用してTemplateResponseオブジェクト( TemplateResponseMixin で定義されている動作)を返す render_to_response() ... login_required , を使用していますが、 LoginRequiredMixin を使用しても同じ動作を得ることができます。 注釈 me ...
https://man.plustar.jp/django/topics/class-based-views/intro.html - [similar]
PREV 1 2 3 NEXT