検索

phrase: max: clip:
target: order:
Results of 51 - 60 of about 150 for views (0.081 sec.)
Django の概要 — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ls.py ¶ from django.urls import path from . import views urlpatterns = [ path ( 'articles/<int:year>/' , vi ... ive ), path ( 'articles/<int:year>/<int:month>/' , views . month_archive ), path ( 'articles/<int:year>/<in ... t:month>/<int:pk>/' , views . article_detail ), ] 上のコードは、 URL パスを Py ... thon のコールバック関数("views")にマッピングしています。 パス文字列は、パラメータ ...
https://man.plustar.jp/django/intro/overview.html - [similar]
クラスベース汎用ビュー - フラットインデックス — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... の観点から編集されたリファレンス文書は、 Class-based views をご覧ください。 参考 Classy Class-Based Views が、 ... tions() post() put() setup() 詳細のビュー ¶ Detail Views ¶ class DetailView ¶ 属性 (と省略可能な継承元): co ... render_to_response() setup() リストのビュー ¶ List Views ¶ class ListView ¶ 属性 (と省略可能な継承元): allo ... View TemplateView RedirectView 詳細のビュー Detail Views リストのビュー List Views 編集するためのビュー For ...
https://man.plustar.jp/django/ref/class-based-views/flattened-index.html - [similar]
Django 1.4.12 release notes — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ease. Bugfixes ¶ Restored the ability to reverse() views created using functools.partial() ( #22486 ). 目次 ... ious , トピック , next , up , Bugfixes , Modules , views , 検索 クイック検索 Last update: 2022年6月01日 « p ...
https://man.plustar.jp/django/releases/1.4.12.html - [similar]
Django 1.5.7 release notes — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ease. Bugfixes ¶ Restored the ability to reverse() views created using functools.partial() ( #22486 ). 目次 ... ious , トピック , next , up , Bugfixes , Modules , views , 検索 クイック検索 Last update: 2022年6月01日 « p ...
https://man.plustar.jp/django/releases/1.5.7.html - [similar]
クラスベースビュー入門 — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 。 from django.http import HttpResponse from django.views import View class MyView ( View ): def get ( self ... # urls.py from django.urls import path from myapp.views import MyView urlpatterns = [ path ( 'about/' , My ... 、 from django.http import HttpResponse from django.views import View class GreetingView ( View ): greeting ... ct from django.shortcuts import render from django.views import View from .forms import MyForm class MyForm ...
https://man.plustar.jp/django/topics/class-based-views/intro.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 5716
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... django.test import RequestFactory , TestCase from .views import MyView , my_view class SimpleTest ( TestCas ... view ( request ) # Use this syntax for class-based views. response = MyView . as_view ()( request ) self . ... e still synchronous callables. Testing class-based views ¶ In order to test class-based views outside of th ... example, assuming the following class-based view: views.py ¶ from django.views.generic import TemplateView ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
The "sites" framework — Django 4.0.6 ドキュメント 5681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e last section. Hooking into the current site from views ¶ You can use the sites framework in your Django v ... jango -- namely, the Django admin site and generic views -- use whichever manager is defined first in the m ... the authentication framework , django.contrib.auth.views.LoginView passes the current Site name to the temp ... . The shortcut view ( django.contrib.contenttypes.views.shortcut ) uses the domain of the current Site obj ...
https://man.plustar.jp/django/ref/contrib/sites.html - [similar]
Django 2.1 リリースノート — Django 4.0.6 ドキュメント 5681
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ations. 管理コマンド ¶ The new inspectdb --include-views option allows creating models for database views. ... ew permission could allow unwanted access to admin views ¶ If you have a custom permission with a codename ... ow to remove usage of these features. contrib.auth.views.login() , logout() , password_change() , password_ ... moved. The extra_context parameter of contrib.auth.views.logout_then_login() is removed. django.test.runner ...
https://man.plustar.jp/django/releases/2.1.html - [similar]
メタドキュメントとその他 — Django 4.0.6 ドキュメント 5646
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ョン ディストリビュータ向け 前のトピックへ Built-in Views 次のトピックへ API の安定性 関連キーワード メタ , ... ント , stable , next , トピック , previous , Built , Views , クイック クイック検索 Last update: 2022年6月01日 ...
https://man.plustar.jp/django/misc/index.html - [similar]
Django 1.6.4 release notes — Django 4.0.6 ドキュメント 5646
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 1.4 ( #22426 ). Restored the ability to reverse() views created using functools.partial() ( #22486 ). Fixe ... revious , up , next , Bugfixes , Fixed , reverse , views クイック検索 Last update: 2022年6月01日 « previous ...
https://man.plustar.jp/django/releases/1.6.4.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 NEXT