検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 100 for reverse (0.018 sec.)
django.urls utility functions — Django 4.0.6 ドキュメント 15201
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ious | up | next » django.urls utility functions ¶ reverse() ¶ If you need to use something similar to the ur ... your code, Django provides the following function: reverse ( viewname , urlconf = None , args = None , kwargs ... ews-archive' ) you can use any of the following to reverse the URL: # using the named URL reverse ( 'news-arc ... le object # (This is discouraged because you can't reverse namespaced views this way.) from news import views ...
https://man.plustar.jp/django/ref/urlresolvers.html - [similar]
Django 1.4.11 release notes — Django 4.0.6 ドキュメント 10155
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t release (1.6.1). Unexpected code execution using reverse() ¶ Django's URL handling is based on a mapping of ... ke. Django also provides a convenience function -- reverse() -- which performs this process in the opposite d ... irection. The reverse() function takes information about a view and retu ... rns a URL which would invoke that view. Use of reverse() is encouraged for application developers, as the ...
https://man.plustar.jp/django/releases/1.4.11.html - [similar]
Django 1.5.6 release notes — Django 4.0.6 ドキュメント 10155
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e security issues. Unexpected code execution using reverse() ¶ Django's URL handling is based on a mapping of ... ke. Django also provides a convenience function -- reverse() -- which performs this process in the opposite d ... irection. The reverse() function takes information about a view and retu ... rns a URL which would invoke that view. Use of reverse() is encouraged for application developers, as the ...
https://man.plustar.jp/django/releases/1.5.6.html - [similar]
Django 1.6.3 release notes — Django 4.0.6 ドキュメント 9440
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... compatible change: Unexpected code execution using reverse() ¶ Django's URL handling is based on a mapping of ... ke. Django also provides a convenience function -- reverse() -- which performs this process in the opposite d ... irection. The reverse() function takes information about a view and retu ... rns a URL which would invoke that view. Use of reverse() is encouraged for application developers, as the ...
https://man.plustar.jp/django/releases/1.6.3.html - [similar]
Django 1.11.22 リリースノート — Django 4.0.6 ドキュメント 9154
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .21. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ¶ When deployed behind ... a reverse-proxy connecting to Django via HTTPS, django.http. ... and HTTPS requests. If you deploy Django behind a reverse-proxy that forwards HTTP requests, and that connec ... ノート CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS 前のトピックへ Django 1 ...
https://man.plustar.jp/django/releases/1.11.22.html - [similar]
Django 2.1.10 リリースノート — Django 4.0.6 ドキュメント 9154
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 1.9. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ¶ When deployed behind ... a reverse-proxy connecting to Django via HTTPS, django.http. ... and HTTPS requests. If you deploy Django behind a reverse-proxy that forwards HTTP requests, and that connec ... ノート CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS 前のトピックへ Django 2 ...
https://man.plustar.jp/django/releases/2.1.10.html - [similar]
Django 2.2.3 リリースノート — Django 4.0.6 ドキュメント 8933
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ted. CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS ¶ When deployed behind ... a reverse-proxy connecting to Django via HTTPS, django.http. ... and HTTPS requests. If you deploy Django behind a reverse-proxy that forwards HTTP requests, and that connec ... ノート CVE-2019-12781: Incorrect HTTP detection with reverse-proxy connecting via HTTPS Bugfixes 前のトピックへ ...
https://man.plustar.jp/django/releases/2.2.3.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 8790
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... moves a field from a model. Bear in mind that when reversed, this is actually adding a field to a model. The ... _name . 特別な操作 ¶ RunSQL ¶ class RunSQL ( sql , reverse_sql = None , state_operations = None , hints = Non ... ds that Django doesn't support directly. sql , and reverse_sql if provided, should be strings of SQL to run o ... ばパーセント文字を二重に記述する必要が有ります。 The reverse_sql queries are executed when the migration is una ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 7997
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... or is interpreted as no match and as a consequence reverse() will raise NoReverseMatch unless another URL pat ... ンを受け入れることが確実である場合にのみ役立ちます。 Reverse resolution of URLs ¶ Django プロジェクトで作業する ... vious sections. The second one is what is known as reverse resolution of URLs , reverse URL matching , revers ... ng the url template tag. In Python code: Using the reverse() function. In higher level code related to handli ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
クラスベースのビューでフォームを扱う — Django 4.0.6 ドキュメント 7646
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... om django.db import models from django.urls import reverse class Author ( models . Model ): name = models . C ... ngth = 200 ) def get_absolute_url ( self ): return reverse ( 'author-detail' , kwargs = { 'pk' : self . pk }) ... 必要はありません: views.py ¶ from django.urls import reverse_lazy from django.views.generic.edit import CreateV ... eView ( DeleteView ): model = Author success_url = reverse_lazy ( 'author-list' ) 注釈 We have to use reverse ...
https://man.plustar.jp/django/topics/class-based-views/generic-editing.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 NEXT