Results of 1 - 10 of about 150 for views (0.027 sec.)
- Generic date ビュー — Django 4.0.6 ドキュメント 10872
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
eric date ビュー ¶ 日付ベースの汎用ビュー ( django.views.generic.dates 内で提供されています) は、日付ベース ...
付のオブジェクトは含まれません。 継承元 (MRO) django.views.generic.list.MultipleObjectTemplateResponseMixin d ...
jango.views.generic.base.TemplateResponseMixin django.views.ge ...
neric.dates.BaseArchiveIndexView django.views.generic.dates.BaseDateListView django.views.generi ...
-
https://man.plustar.jp/django/ref/class-based-views/generic-date-based.html
- [similar]
- Generic editing ビュー — Django 4.0.6 ドキュメント 10509
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
明され、内容を編集するための基礎を提供します: django.views.generic.edit.FormView django.views.generic.edit.Cr ...
eateView django.views.generic.edit.UpdateView django.views.generic.edit. ...
gs = { 'pk' : self . pk }) FormView ¶ class django.views.generic.edit. FormView ¶ フォームを描画するビューで ...
下のビューからメソッドと属性を継承しています: django.views.generic.base.TemplateResponseMixin django.views.ge ...
-
https://man.plustar.jp/django/ref/class-based-views/generic-editing.html
- [similar]
- 索引 — Django 4.0.6 ドキュメント 9925
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
le_contenttypes コマンドラインオプション --include-views inspectdb コマンドラインオプション --indent dumpda ...
属性) allow_empty (BaseDateListView の属性) (django.views.generic.list.MultipleObjectMixin の属性) allow_emp ...
o.contrib.admin のクラス) ArchiveIndexView (django.views.generic.dates のクラス) (組み込みクラス) Area (dja ...
() (django.db.models モジュール) as_view() (django.views.generic.base.View のクラスメソッド) as_widget() (B ...
-
https://man.plustar.jp/django/genindex.html
- [similar]
- Generic display ビュー — Django 4.0.6 ドキュメント 9726
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
これらは最も広範に使われるビューとなります。 Detail Views ¶ class django.views.generic.detail. DetailView ¶ ...
下のビューからメソッドと属性を継承しています: django.views.generic.detail.SingleObjectTemplateResponseMixin d ...
jango.views.generic.base.TemplateResponseMixin django.views.ge ...
neric.detail.BaseDetailView django.views.generic.detail.SingleObjectMixin django.views.gene ...
-
https://man.plustar.jp/django/ref/class-based-views/generic-display.html
- [similar]
- URL ディスパッチャ — Django 4.0.6 ドキュメント 9492
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ルです。 from django.urls import path from . import views urlpatterns = [ path ( 'articles/2003/' , views . ...
ecial_case_2003 ), path ( 'articles/<int:year>/' , views . year_archive ), path ( 'articles/<int:year>/<int ...
:month>/' , views . month_archive ), path ( 'articles/<int:year>/<in ...
t:month>/<slug:slug>/' , views . article_detail ), ] メモ: To capture a value fro ...
-
https://man.plustar.jp/django/topics/http/urls.html
- [similar]
- The sitemap framework — Django 4.0.6 ドキュメント 9399
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
can find the default templates.) Initialization ¶ views. sitemap ( request , sitemaps , section = None , t ...
ine to your URLconf : from django.contrib.sitemaps.views import sitemap path ( 'sitemap.xml' , sitemap , { ...
aps' : sitemaps }, name = 'django.contrib.sitemaps.views.sitemap' ) This tells Django to build a sitemap wh ...
sitemap have a lastmod , the sitemap generated by views.sitemap() will have a Last-Modified header equal t ...
-
https://man.plustar.jp/django/ref/contrib/sitemaps.html
- [similar]
- クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 9165
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ニックについて詳しく読む前に、 Django's class-based views で動作のしくみを知っておくことをおすすめします。 D ...
's look at how two of Django's generic class-based views are built out of mixins providing discrete functio ...
There are also mixins involved in the generic edit views ( FormView , and the model-specific views CreateVi ...
ew and DeleteView ), and in the date-based generic views. These are covered in the mixin reference document ...
-
https://man.plustar.jp/django/topics/class-based-views/mixins.html
- [similar]
- Built-in Views — Django 4.0.6 ドキュメント 9071
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
Index | Modules « previous | up | next » Built-in Views ¶ Several of Django's built-in views are documente ...
ttings from django.urls import re_path from django.views.static import serve # ... the rest of your URLconf ...
A_URL and a dotted path to a view, such as 'django.views.static.serve' . Any other function parameter will ...
be transparently passed to the view. Error views ¶ Django comes with a few views by default for han ...
-
https://man.plustar.jp/django/ref/views.html
- [similar]
- View decorators — Django 4.0.6 ドキュメント 8452
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
provides several decorators that can be applied to views to support various HTTP features. See クラスをデコ ...
る for how to use these decorators with class-based views. Allowed HTTP methods ¶ The decorators in django.v ...
.decorators.http can be used to restrict access to views based on the request method. These decorators will ...
pts particular request methods. Usage: from django.views.decorators.http import require_http_methods @requi ...
-
https://man.plustar.jp/django/topics/http/decorators.html
- [similar]
- Base views — Django 4.0.6 ドキュメント 8288
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ts | Index | Modules « previous | up | next » Base views ¶ 以下の3つのクラスは、Django のビューの作成に必要 ...
d Resolution Order) の略です。 View ¶ class django.views.generic.base. View ¶ すべての元となるクラスベースビ ...
ます。厳密には汎用ビューではありませんので、 django.views からインポートされることができます。 メソッドのフロ ...
atch() http_method_not_allowed() options() Example views.py : from django.http import HttpResponse from dja ...
-
https://man.plustar.jp/django/ref/class-based-views/base.html
- [similar]