検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 116 for app (0.015 sec.)
django.utils.module_loading — Django 4.0.6 ドキュメント 7153
" + 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 ... ry instance variable to access it. """ from django.apps import apps register_to = kwargs . get ( "registe ... r_to" ) for app_config in apps . get_app_configs (): for module_to ... _search in args : # Attempt to import the app's module. try : if register_to : before_import_reg ...
https://man.plustar.jp/django/_modules/django/utils/module_loading.html - [similar]
The Django admin documentation generator — Django 4.0.6 ドキュメント 7028
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... admin documentation generator ¶ Django's admindocs app pulls documentation from the docstrings of models, ... views, template tags, and template filters for any app in INSTALLED_APPS and makes that documentation ava ... ng: Add django.contrib.admindocs to your INSTALLED_APPS . Add path('admin/doc/', include('django.contrib. ... go Component reStructuredText roles モデル :model:`app_label.ModelName` ビュー :view:`app_label.view_name ...
https://man.plustar.jp/django/ref/contrib/admin/admindocs.html - [similar]
The redirects app — Django 4.0.6 ドキュメント 6865
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... x | Modules « previous | up | next » The redirects app ¶ Django comes with an optional redirects applicat ... y default. インストール ¶ To install the redirects app, follow these steps: Ensure that the django.contri ... . Add 'django.contrib.redirects' to your INSTALLED_APPS setting. Add 'django.contrib.redirects.middleware ... dleware does all of the work. Each time any Django application raises a 404 error, this middleware checks ...
https://man.plustar.jp/django/ref/contrib/redirects.html - [similar]
設定 — Django 4.0.6 ドキュメント 6740
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... RRIDES ¶ デフォルト値: {} (空の辞書) A dictionary mapping "app_label.model_name" strings to functions tha ... プロテクションを回避してしまうので注意してください。 APPEND_SLASH ¶ デフォルト値: True True に設定すると、リ ... 信するデータが失われることがあるので注意が必要です。 APPEND_SLASH 設定は CommonMiddleware がインストールされ ... e framework . CSRF_COOKIE_AGE ¶ Default: 31449600 (approximately 1 year, in seconds) The age of CSRF cook ...
https://man.plustar.jp/django/ref/settings.html - [similar]
Django 3.2 release notes — Django 4.0.6 ドキュメント 6652
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... each series. What's new in Django 3.2 ¶ Automatic AppConfig discovery ¶ Most pluggable applications defi ... ne an AppConfig subclass in an apps.py submodule. Many defin ... e a default_app_config variable pointing to this class in their __ ... init__.py . When the apps.py submodule exists and defines a single AppConfi ...
https://man.plustar.jp/django/releases/3.2.html - [similar]
Django 2.2 リリースノート — Django 4.0.6 ドキュメント 6602
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and AutoField for SQLite. On Oracle, dbshell is wrapped with rlwrap , if available. rlwrap provides a co ... lization of list and tuple data when content_type='application/json' . The new ORACLE_MANAGED_FILES test ... delete_check_sql() The third argument of DatabaseWrapper.__init__() , allow_thread_sharing , is removed. ... ge is transparent for proxy models having the same app_label as their concrete model. However, in older v ...
https://man.plustar.jp/django/releases/2.2.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 6564
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... es フレームワーク ¶ Django includes a contenttypes application that can track all of the models installed ... オーバービュー ¶ At the heart of the contenttypes application is the ContentType model, which lives at d ... pes framework is included in the default INSTALLED_APPS list created by django-admin startproject , but i ... emoved it or if you manually set up your INSTALLED_APPS list, you can enable it by adding 'django.contrib ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
GeoDjango Installation — Django 4.0.6 ドキュメント 6564
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ial backends . Add django.contrib.gis to INSTALLED_APPS ¶ Like other Django contrib applications, you wil ... l only need to add django.contrib.gis to INSTALLED_APPS in your settings. This is so that the gis templat ... installing GeoDjango. These options are: Postgres.app (easiest and recommended) Homebrew KyngChaos packa ... thon.framework/Versions/Current/bin:$PATH Postgres.app ¶ Postgres.app is a standalone PostgreSQL server t ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
django.db.utils — Django 4.0.6 ドキュメント 6527
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Error ( DatabaseError ): pass class DatabaseErrorWrapper : """ Context manager and decorator that reraise ... ecific database exceptions using Django's common wrappers. """ def __init__ ( self , wrapper ): """ wrapp ... er is a database wrapper. It must have a Database attribute defining PEP- ... 249 exceptions. """ self . wrapper = wrapper def __enter__ ( self ): pass def __exi ...
https://man.plustar.jp/django/_modules/django/db/utils.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 6527
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... x | Modules « previous | up | next » The flatpages app ¶ Django comes with an optional "flatpages" applic ... or which you don't want to develop a custom Django application. A flatpage can use a custom template or a ... template. インストール ¶ To install the flatpages app, follow these steps: Install the sites framework b ... y adding 'django.contrib.sites' to your INSTALLED_APPS setting, if it's not already in there. Also make ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT