検索

phrase: max: clip:
target: order:
Results of 31 - 40 of about 117 for apps (0.179 sec.)
Django 2.0 リリースノート — Django 4.0.6 ドキュメント 6362
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... d s ( django.contrib.postgres must be in INSTALLED_APPS ). django.contrib.sitemaps ¶ Added the protocol ke ... usefulness of Engine.get_default() in third-party apps, it now returns the first engine if multiple Djang ... tables using a script similar to this: from django.apps import apps from django.db import connection for a ... pp in apps . get_app_configs (): for model in app . get_model ...
https://man.plustar.jp/django/releases/2.0.html - [similar]
Django の admin サイト — Django 4.0.6 ドキュメント 6237
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... , and django.contrib.sessions - to your INSTALLED_APPS setting. Configure a DjangoTemplates backend in yo ... args, **kwargs) . admin ファイルの発見 ¶ INSTALLED_APPS 設定内に 'django.contrib.admin' を記述すると、Djan ... で admin モジュールを探してインポートします。 class apps. AdminConfig ¶ これは、admin に対するデフォルトの ... が開始すると autodiscover() を呼び出します。 class apps. SimpleAdminConfig ¶ このクラスは AdminConfig と同 ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
Writing documentation — Django 4.0.6 ドキュメント 6175
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... o: Add ``django.contrib.auth`` to your ``INSTALLED_APPS``... Isn't nearly as helpful as: Add :mod:`django. ... contrib.auth` to your :setting:`INSTALLED_APPS`... This is because Sphinx will generate proper li ... を利用しています: Settings: .. setting :: INSTALLED_APPS To link to a setting, use :setting:`INSTALLED_APPS ...
https://man.plustar.jp/django/internals/contributing/writing-documentation.html - [similar]
contenttypes フレームワーク — Django 4.0.6 ドキュメント 6175
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pes framework is included in the default INSTALLED_APPS list created by django-admin startproject , but if ... emoved it or if you manually set up your INSTALLED_APPS list, you can enable it by adding 'django.contrib. ... contenttypes' to your INSTALLED_APPS setting. It's generally a good idea to have the co ... d then add the sites application to your INSTALLED_APPS setting and run manage.py migrate to install it, t ...
https://man.plustar.jp/django/ref/contrib/contenttypes.html - [similar]
Django 1.0 リリースノート — Django 4.0.6 ドキュメント 6175
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... incompatible changes from Django 0.96. If you have apps written against Django 0.96 that you need to port, ... see our detailed porting guide: Porting your apps from Django 0.96 to 1.0 A complete list of backwar ... o 1.0.1 リリースノート 次のトピックへ Porting your apps from Django 0.96 to 1.0 関連キーワード documentati ...
https://man.plustar.jp/django/releases/1.0.html - [similar]
Django 1.10.1 release notes — Django 4.0.6 ドキュメント 6175
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tabases if database routers aren't in use or if no apps can be migrated to the database ( #27054 , #27110 ... the already applied migration state changes in the Apps instance provided to the pre_migrate signal receiv ...
https://man.plustar.jp/django/releases/1.10.1.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 6125
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... by adding 'django.contrib.sites' to your INSTALLED_APPS setting, if it's not already in there. Also make s ... . Add 'django.contrib.flatpages' to your INSTALLED_APPS setting. Then either: Add an entry in your URLconf ... at could be useful for your project or third-party apps. It doesn't appear in the admin interface, but you ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
How to create custom django-admin commands — Django 4.0.6 ドキュメント 6062
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... poll コマンドは polls アプリケーションを INSTALLED_APPS に含むプロジェクト全てで利用できるようになります。 ... goは、ビルトインコマンドを読み込んだ後に INSTALLED_APPS を逆順に検索してコマンドを登録します。この検索の際 ... なければなりません。そして、そのアプリは、 INSTALLED_APPS で、オーバーライドするコマンドのアプリよりも前にあ ... d をインポートするプロジェクトのアプリ( INSTALLED_APPS でサードパーティアプリの前に注文) の1つで新しいコ ...
https://man.plustar.jp/django/howto/custom-management-commands.html - [similar]
高度なチュートリアル: 再利用可能アプリの書き方 — Django 4.0.6 ドキュメント 6062
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... gi . py wsgi . py polls / __init__ . py admin . py apps . py migrations / __init__ . py 0001 _initial . py ... ジへのパス(ドット区切り)の最後の部分) は INSTALLED_APPS の中で 必ず ユニークでなければなりません。 auth 、 ... start ----------- 1. Add "polls" to your INSTALLED_APPS setting like this:: INSTALLED_APPS = [ ... 'polls' ...
https://man.plustar.jp/django/intro/reusable-apps.html - [similar]
はじめての Django アプリ作成、その 1 — Django 4.0.6 ドキュメント 6062
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... pp. A project is a collection of configuration and apps for a particular website. A project can contain mu ... ltiple apps. An app can be in multiple projects. アプリは Pyth ... ようになっています: polls / __init__ . py admin . py apps . py migrations / __init__ . py models . py tests ... ようになるはずです: polls / __init__ . py admin . py apps . py migrations / __init__ . py models . py tests ...
https://man.plustar.jp/django/intro/tutorial01.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT