検索

phrase: max: clip:
target: order:
Results of 151 - 160 of about 312 for USE (0.137 sec.)
Submitting patches — Django 4.0.6 ドキュメント 4348
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ing with Git and GitHub for more details on how to use pull requests. "Claiming" tickets ¶ In an open-sou ... contributions allowing for a clear license for all users. Ticket claimers' responsibility ¶ Once you've c ... send a pull request for some reason, you can also use patches in Trac. When using this style, follow the ... running the tests. The first step is to remove any use of the deprecated behavior by Django itself. Next ...
https://man.plustar.jp/django/internals/contributing/writing-code/submitting-pat... - [similar]
The flatpages app — Django 4.0.6 ドキュメント 4348
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... latpage is a object with a URL, title and content. Use it for one-off, special-case pages, such as "About ... evelop a custom Django application. A flatpage can use a custom template or a default, systemwide flatpag ... '^(?P<url>.*/)$' , views . flatpage ), ] 警告 If you set APPEND_SLASH to False , you must remove the slas ... sh will not be matched. Another common setup is to use flat pages for a limited set of known pages and to ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
WSGI とともにデプロイするには — Django 4.0.6 ドキュメント 4310
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nd direct any WSGI-compliant application server to use. Django には以下の WSGI サーバのために、手引きとな ... るドキュメントが用意されています: How to use Django with Gunicorn Django を uWSGI とともに使うに ... ともに使うには? How to authenticate against Django's user database from Apache application オブジェクト ¶ W ... ピックへ How to deploy Django 次のトピックへ How to use Django with Gunicorn 関連キーワード 設定 , モジュー ...
https://man.plustar.jp/django/howto/deployment/wsgi/index.html - [similar]
mixinを編集する — Django 4.0.6 ドキュメント 4310
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... form_class isn't provided get_form_class() will be used. get_form_kwargs () ¶ フォームのインスタンス化に必 ... object's field attributes. For example, you could use success_url="/polls/{slug}/" to redirect to a URL ... ate. If form_class is provided, that class will be used. Otherwise, a ModelForm will be instantiated usin ... cess_url if it is provided; otherwise, attempts to use the get_absolute_url() of the object. form_valid ( ...
https://man.plustar.jp/django/ref/class-based-views/mixins-editing.html - [similar]
アップロードファイルとアップロードハンドラ — Django 4.0.6 ドキュメント 4310
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... a wrapper around an uploaded file. You'll usually use one of these methods to access the uploaded conten ... ry to read it into memory. You'll probably want to use chunks() instead; see below. UploadedFile. multipl ... he file. If multiple_chunks() is True , you should use this method in a loop instead of read() . In pract ... ice, it's often easiest to use chunks() all the time. Looping over chunks() inste ...
https://man.plustar.jp/django/ref/files/uploads.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 4310
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ion file to write your own Operation objects into, use python manage.py makemigrations --empty yourappnam ... manually adding schema-altering operations can confuse the migration autodetector and make resulting runs ... persists these changes for RunPython instances to use. options should be a dictionary mapping option nam ... nd just for this migration ( False ) - usually because the migration is adding a non-nullable field to a ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
Django 1.10.7 release notes — Django 4.0.6 ドキュメント 4310
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 17-7233: Open redirect and possible XSS attack via user-supplied numeric redirect URLs ¶ Django relies on ... user input in some cases (e.g. django.contrib.auth.vie ... ws.login() and i18n ) to redirect the user to an "on success" URL. The security check for th ... oes any redirects as they don't provide any known, useful functionality. Note, however, that this view ha ...
https://man.plustar.jp/django/releases/1.10.7.html - [similar]
How to implement a custom template backend — Django 4.0.6 ドキュメント 4273
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... to implement a custom template backend in order to use another template system. A template backend is a c ... template error arises. Custom template engines can use these hooks to enhance the traceback information t ... hat appears to users. The following hooks are available: テンプレート ... when raising TemplateDoesNotExist . Backends that use the postmortem should specify an origin on the tem ...
https://man.plustar.jp/django/howto/custom-template-backend.html - [similar]
How to deploy static files — Django 4.0.6 ドキュメント 4273
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ら静的ファイルを配信する ¶ Most larger Django sites use a separate web server -- i.e., one that's not also ... t do this, but if the provider has an API, you can use a custom file storage backend to integrate the CDN ... tom storage backend, you can tell collectstatic to use it by setting STATICFILES_STORAGE to the storage e ...
https://man.plustar.jp/django/howto/static-files/deployment.html - [similar]
Model index reference — Django 4.0.6 ドキュメント 4273
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o django.db.models . The standard convention is to use from django.db import models and refer to the inde ... ablespace ¶ The name of the database tablespace to use for this index. For single field indexes, if db_ta ... eld.db_tablespace isn't specified (or if the index uses multiple fields), the index is created in tablesp ... ¶ The names of the PostgreSQL operator classes to use for this index. If you require a custom operator c ...
https://man.plustar.jp/django/ref/models/indexes.html - [similar]