検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 481 for To (0.119 sec.)
Simple mixins — Django 4.0.6 ドキュメント 4737
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... . ContextMixin ¶ 属性 extra_context ¶ A dictionary to include in the context. This is a convenient way o ... teView . as_view ( extra_context = { 'title' : 'Custom Title' }) メソッド get_context_data ( ** kwargs ) ... ange ( 1 , 100 ) return context The template context of all class-based generic views include a view var ... iable that points to the View instance. Use alters_data where appropria ...
https://man.plustar.jp/django/ref/class-based-views/mixins-simple.html - [similar]
Testing GeoDjango apps — Django 4.0.6 ドキュメント 4737
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o's spatial backend initializes on PostGIS, it has to perform an SQL query to determine the version in o ... rder to figure out what features are available. Advanced u ... sers wishing to prevent this additional query may set the version ... nd micro version numbers for PostGIS. For example, to configure for PostGIS X.Y.Z you would use: POSTGIS ...
https://man.plustar.jp/django/ref/contrib/gis/testing.html - [similar]
データベースアクセスの最適化 — Django 4.0.6 ドキュメント 4737
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 適化 ¶ Django's database layer provides various ways to help developers get the most out of their database ... s. This document gathers together links to the relevant documentation, and add ... ious tips, organized under a number of headings that outline the steps to take when attempting to optimi ... 実行されるかを理解してください。また、 django-debug-toolbar といった外部のプロジェクトや、データベースを直 ...
https://man.plustar.jp/django/topics/db/optimization.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 4737
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... line' , 'content' , 'reporter' ] # Creating a form to add an article. >>> form = ArticleForm () # Creati ... ng a form to change an existing article. >>> article = Article ... ォーム上で CharField として表現されます。モデル ManyToManyField は MultipleChoiceField として表現されます ... の対応表です: モデルフィールド フォームフィールド AutoField フォーム上では表示されません。 BigAutoField フ ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
ファイルの管理 — Django 4.0.6 ドキュメント 4721
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... you could use them for other purposes. If you want to handle "static files" (JS, CSS, etc.), see How to ... .g. images, JavaScript, CSS) . By default, Django stores files locally, using the MEDIA_ROOT and MEDIA_U ... ファイルを保存するかの複雑なカスタムを許可する file storage systems を提供しています。このドキュメントの後 ... se a FileField or ImageField , Django provides a set of APIs you can use to deal with that file. Conside ...
https://man.plustar.jp/django/topics/files.html - [similar]
Django のインストール方法 — Django 4.0.6 ドキュメント 4721
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e をセットアップする必要はありません。 If you want to use Django on a production site, use Apache with m ... daemon mode. In embedded mode, mod_wsgi is similar to mod_perl -- it embeds Python within Apache and loa ... ds Python code into memory when the server starts. Code stays in memor ... oughout the life of an Apache process, which leads to significant performance gains over other server ar ...
https://man.plustar.jp/django/topics/install.html - [similar]
How to override templates — Django 4.0.6 ドキュメント 4713
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to override templates ¶ プロジェクトでは、 django.con ... さい。 Overriding from the project's templates directory ¶ 最初に、プロジェクトのテンプレートディレクトリ ... オーバーライドを検討します。 Let's say you're trying to override the templates for a third-party applicati ... e default project template. The setting that needs to be modified is DIRS . These settings assume you ha ...
https://man.plustar.jp/django/howto/overriding-templates.html - [similar]
File storage API — Django 4.0.6 ドキュメント 4713
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... s | Index | Modules « previous | up | next » File storage API ¶ Getting the current storage class ¶ Djan ... go provides two convenient ways to access the current storage class: class DefaultSto ... rage ¶ DefaultStorage provides lazy access to the current default st ... orage system as defined by DEFAULT_FILE_STORAGE . DefaultStorage uses get_storage_class() inte ...
https://man.plustar.jp/django/ref/files/storage.html - [similar]
How to deploy Django — Django 4.0.6 ドキュメント 4697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... nts | Index | Modules « previous | up | next » How to deploy Django ¶ Django is full of shortcuts to mak ... e web developers' lives easier, but all those tools are of no use if you can't easily deploy your s ... being a web framework, needs a web server in order to operate. And since most web servers don't natively ... speak Python, we need an interface to make that communication happen. Django currently s ...
https://man.plustar.jp/django/howto/deployment/index.html - [similar]
ロギング — Django 4.0.6 ドキュメント 4697
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... dules « previous | up | next » ロギング ¶ 参考 How to configure and use logging Django logging overview ... on's builtin logging . Logging is configured as part of the general Django django.setup() function, so i ... g format . Default logging conditions ¶ The full set of default logging conditions are: DEBUG が True の ... All loggers except django.server propagate logging to their parents, up to the root django logger. The c ...
https://man.plustar.jp/django/ref/logging.html - [similar]