検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 117 for apps (0.044 sec.)
Testing GeoDjango apps — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Modules « previous | up | next » Testing GeoDjango apps ¶ Included in this documentation are some addition ... -settings=postgis gis_tests 目次 Testing GeoDjango apps PostGIS 設定 POSTGIS_VERSION Obtaining sufficient ... 連キーワード database , GeoDjango , user , Testing , apps , superuser , tests , Geo , settings , spatial クイ ...
https://man.plustar.jp/django/ref/contrib/gis/testing.html - [similar]
設定 — Django 4.0.6 ドキュメント 7137
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... None as a value in MIGRATION_MODULES , but for all apps. MIRROR ¶ デフォルト値: None The alias of the data ... nabled (see ミドルウェア (Middleware) ). INSTALLED_APPS ¶ デフォルト値: [] (空のリスト) A list of strings ... rospection Your code should never access INSTALLED_APPS directly. Use django.apps.apps instead. Applicatio ... n names and labels must be unique in INSTALLED_APPS Application names — the dotted Python path to the ...
https://man.plustar.jp/django/ref/settings.html - [similar]
django.utils.module_loading — Django 4.0.6 ドキュメント 7075
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... * args , ** kwargs ): """ Auto-discover INSTALLED_APPS modules and fail silently when not present. This f ... ry instance variable to access it. """ from django.apps import apps register_to = kwargs . get ( "register ... _to" ) for app_config in apps . get_app_configs (): for module_to_search in args ...
https://man.plustar.jp/django/_modules/django/utils/module_loading.html - [similar]
Signals — Django 4.0.6 ドキュメント 7075
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ion was rolled back ( True ) or applied ( False ). apps An instance of Apps containing the state of the pr ... ation run. It should be used instead of the global apps registry to retrieve the models you want to perfor ... ion was rolled back ( True ) or applied ( False ). apps An instance of Apps containing the state of the pr ... ation run. It should be used instead of the global apps registry to retrieve the models you want to perfor ...
https://man.plustar.jp/django/ref/signals.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 7012
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... aining your models. For example, if your INSTALLED_APPS contains the string 'mysite.blog' , the app name i ... jango project for common problems. By default, all apps will be checked. You can check a subset of apps by ... nerated model. The recognized fields may depend on apps listed in INSTALLED_APPS . For example, django.con ... to look for fixtures in rather than looking in all apps. --format FORMAT ¶ Specifies the serialization for ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
django.core.management.base — Django 4.0.6 ドキュメント 6887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ecutor . loader . graph . leaf_nodes ()) if plan : apps_waiting_migration = sorted ( { migration . app_lab ... ly until you apply the " "migrations for app(s): %(apps_waiting_migration)s ." % { "unapplied_migration_co ... unt" : len ( plan ), "apps_waiting_migration" : ", " . join ( apps_waiting_mi ... ( self , * app_labels , ** options ): from django.apps import apps try : app_configs = [ apps . get_app_c ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]
はじめての Django アプリ作成、その2 — Django 4.0.6 ドキュメント 6887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... も設定します。 同じく、ファイル先頭にある INSTALLED_APPS に注意してください。これはこのDjangoインスタンスの ... 配布することもできます。 デフォルトでは、 INSTALLED_APPS には以下のアプリケーションが入っています。 django. ... migrate The migrate command looks at the INSTALLED_APPS setting and creates any necessary database tables ... てが必要ない場合、 migrate を実行する前に INSTALLED_APPS から適切な行をコメントアウトしたり削除しても構いま ...
https://man.plustar.jp/django/intro/tutorial02.html - [similar]
マイグレーション操作 — Django 4.0.6 ドキュメント 6887
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 所が一致している履歴を反映したモデルを含んだ django.apps.registry.Apps のインスタンスであり、第二引数は Sch ... om django.db import migrations def forwards_func ( apps , schema_editor ): # We get the model from the ver ... ly import it, it'll be the wrong version Country = apps . get_model ( "myapp" , "Country" ) db_alias = sch ... = "France" , code = "fr" ), ]) def reverse_func ( apps , schema_editor ): # forwards_func() creates two C ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
The staticfiles app — Django 4.0.6 ドキュメント 6837
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... refore if you remove an application from INSTALLED_APPS , it's a good idea to use the collectstatic --clea ... STATICFILES_DIRS and in the 'static' directory of apps specified by the INSTALLED_APPS setting. The colle ... taticfiles' with that class path in your INSTALLED_APPS setting: from django.contrib.staticfiles.apps impo ... the staticfiles app is in your project's INSTALLED_APPS setting. Example usage:   $ django-admin runserv ...
https://man.plustar.jp/django/ref/contrib/staticfiles.html - [similar]
The form rendering API — Django 4.0.6 ドキュメント 6837
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... django/forms/templates and then from the installed apps' templates directories using the app_directories l ... s are located in django/forms/jinja2 and installed apps can provide templates in a jinja2 directory. To us ... ms and widgets in your project and its third-party apps must have Jinja2 templates. Unless you provide you ... lates requires either: 'django.forms' in INSTALLED_APPS and at least one engine with APP_DIRS=True . Addin ...
https://man.plustar.jp/django/ref/forms/renderers.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT