検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 118 for Page (0.049 sec.)
クロスサイトリクエストフォージェリ (CSRF) 対策 — Django 4.0.6 ドキュメント 6635
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... トークンが含まれていない場合に発生します。 The error page, however, is not very friendly, so you may want to ... t: from django.views.decorators.cache import cache_page from django.views.decorators.csrf import csrf_prot ... ect @cache_page ( 60 * 15 ) @csrf_protect def my_view ( request ): ... ected_path ( request ) else : do_something_else () Page uses AJAX without any HTML form ¶ A page makes a P ...
https://man.plustar.jp/django/ref/csrf.html - [similar]
ビューを記述する — Django 4.0.6 ドキュメント 6598
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e. This response can be the HTML contents of a web page, or a redirect, or a 404 error, or an XML document ... # ... if foo : return HttpResponseNotFound ( '<h1>Page not found</h1>' ) else : return HttpResponse ( '<h ... 1>Page was found</h1>' ) レスポンスコードの多くは使用頻度 ... る責任があります: return HttpResponseNotFound ( '<h1>Page not found</h1>' ) 利便性に加えて、サイト全体を通じ ...
https://man.plustar.jp/django/topics/http/views.html - [similar]
Date-based mixins — Django 4.0.6 ドキュメント 6473
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to determine the list of objects to display on the page. When time zone support is enabled and date_field ... ifying whether to include "future" objects on this page, where "future" means objects in which the field s ... ermine whether to include "future" objects on this page, where "future" means objects in which the field s ... mpty ¶ A boolean specifying whether to display the page if no objects are available. If this is True and n ...
https://man.plustar.jp/django/ref/class-based-views/mixins-date-based.html - [similar]
Built-in Views — Django 4.0.6 ドキュメント 6436
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ews, see エラービューをカスタマイズする . The 404 (page not found) view ¶ defaults. page_not_found ( reque ... s. By default, it's the view django.views.defaults.page_not_found() , which either produces a "Not Found" ... Serving files in development Error views The 404 (page not found) view The 500 (server error) view The 40 ...
https://man.plustar.jp/django/ref/views.html - [similar]
Django 1.5 release notes — Django 4.0.6 ドキュメント 6436
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e those templates in order to present pretty error pages to the user. django.contrib.auth provides a new s ... lity to encode the strings. Validation of previous_page_number and next_page_number ¶ When using object pa ... gination , the previous_page_number() and next_page_number() methods of the Pag ... eck if the returned number was inside the existing page range. It does check it now and raises an InvalidP ...
https://man.plustar.jp/django/releases/1.5.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 6398
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... umentation into another language. django-admin man page ¶ Sphinx can generate a manual page for the django ... f.py . Unlike other documentation output, this man page should be included in the Django repository and th ... process. To generate an updated version of the man page, run make man in the docs directory. The new man p ... k check Translating documentation django-admin man page 前のトピックへ JavaScript 次のトピックへ Django の ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
Installing SpatiaLite — Django 4.0.6 ドキュメント 6398
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ndows, you may find binaries on the Gaia-SINS home page. In any case, you should always be able to install ... algamation source archive from the SQLite download page , and extract: $ wget https://www.sqlite.org/YYYY/ ... SpatiaLite library source bundle from the download page : $ wget https://www.gaia-gis.it/gaia-sins/libspat ...
https://man.plustar.jp/django/ref/contrib/gis/install/spatialite.html - [similar]
翻訳 — Django 4.0.6 ドキュメント 6361
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ): # Translators: This message appears on the home page only output = gettext ( "Welcome to my site." ) コ ... : #. Translators: This message appears on the home page only # path/to/python/file.py:123 msgid "Welcome t ... port ngettext def hello_world ( request , count ): page = ngettext ( 'there is %(count)d object' , 'there ... , ) % { 'count' : count , } return HttpResponse ( page ) この例では、オブジェクトの数値は count 変数として ...
https://man.plustar.jp/django/topics/i18n/translation.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 6311
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t you can use any HTML5 features you need in admin pages without having to lose HTML validity or override ... plate source location information in the debug 500 page. In Django 1.4, exceptions are no longer wrapped. ... ing: A more usable stacktrace in the technical 500 page. Frames in the stack trace that reference Django's ... In the documentation, a helpful security overview page. The django.contrib.auth.models.check_password fun ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
The sitemap framework — Django 4.0.6 ドキュメント 6199
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... t tells search-engine indexers how frequently your pages change and how "important" certain pages are in r ... elation to other pages on your site. This information helps search engin ... r priority : 0.4 , 1.0 . The default priority of a page is 0.5 . See the sitemaps.org documentation for mo ... efines the maximum number of URLs included on each page of the sitemap. Its value should not exceed the de ...
https://man.plustar.jp/django/ref/contrib/sitemaps.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT