検索

phrase: max: clip:
target: order:
Results of 1 - 10 of about 71 for Management (0.026 sec.)
GeoDjango Management Commands — Django 4.0.6 ドキュメント 12299
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Index | Modules « previous | up | next » GeoDjango Management Commands ¶ inspectdb ¶ django-admin inspectdb When ... trib.gis is in your INSTALLED_APPS , the inspectdb management command is overridden with one from GeoDjango. The ... ogrinspect data_source model_name ¶ The ogrinspect management command will inspect the given OGR-compatible Data ... ine of the SRID of the data source. 目次 GeoDjango Management Commands inspectdb ogrinspect 前のトピックへ GeoJS ...
https://man.plustar.jp/django/ref/contrib/gis/commands.html - [similar]
Porting your apps from Django 0.96 to 1.0 — Django 4.0.6 ドキュメント 10443
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ( username = 'myuser' , password = 'mypassword' ) Management commands ¶ Running management commands from your c ... ode ¶ django.core.management has been greatly refactored. Calls to management s ... calls flush and load_data: from django.core import management management . flush ( verbosity = 0 , interactive = ... False ) management . load_data ([ 'test_data' ], verbosity = 0 ) ...y ...
https://man.plustar.jp/django/releases/1.0-porting-guide.html - [similar]
Django 1.6 release notes — Django 4.0.6 ドキュメント 10204
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... m project and app templates . Improved transaction management ¶ Django's transaction management was overhauled. ... s were introduced, as described in the transaction management docs . Persistent database connections ¶ Django no ... be customized to use any other JS framework. check management command added for verifying compatibility ¶ A chec ... k management command was added, enabling you to verify if your ...
https://man.plustar.jp/django/releases/1.6.html - [similar]
フォームセット (Formset) — Django 4.0.6 ドキュメント 9951
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ormSet ( data ) >>> formset . has_changed () False ManagementForm を理解する ¶ You may have noticed the addition ... ormset's data above. This data is required for the ManagementForm . This form is used by the formset to manage t ... ontained in the formset. If you don't provide this management data, the formset will be invalid: >>> data = { .. ... かかわらず POST データに存在することが期待されます。 ManagementFormは、フォームセット自体の属性として使用できます。 ...
https://man.plustar.jp/django/topics/forms/formsets.html - [similar]
Django 1.8 リリースノート — Django 4.0.6 ドキュメント 9825
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Database connections are now always closed after a management command called from the command line has finished ... d for MySQL and PostgreSQL databases. When calling management commands with options using call_command() , the o ... was removed in 1.8.4 as it's no longer relevant.) Management commands that only accept positional arguments ¶ I ... f you have written a custom management command that only accepts positional arguments and ...
https://man.plustar.jp/django/releases/1.8.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 9712
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ect layout and manage.py file for the startproject management command. These fix some issues with the previous m ... , "{{ project_name }}.settings" ) from django.core.management import execute_from_command_line execute_from_comm ... and app templates ¶ The startapp and startproject management commands now have a --template option for specifyi ... entation. Improved WSGI support ¶ The startproject management command now adds a wsgi.py module to the initial p ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 9712
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... aries. To perform system checks, you use the check management command. This command replaces the older validate ... son file is created when running the collectstatic management command and should be a less expensive alternative ... tion for django-admin disables the colorization of management command output. The new dumpdata --natural-foreign ... files or favicon.ico that used to be filtered out. Management commands can now produce syntax colored output und ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
django.core.management.base — Django 4.0.6 ドキュメント 9459
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Table of contents | Index | Modules up django.core.management.base のソースコード """ Base classes for writing m ... tions import ImproperlyConfigured from django.core.management.color import color_style , no_style from django.db ... ption class indicating a problem while executing a management command. If this exception is raised during the ex ... ecution of a management command, it will be caught and turned into a nicel ...
https://man.plustar.jp/django/_modules/django/core/management/base.html - [similar]
django-admin と manage.py — Django 4.0.6 ドキュメント 9459
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... peruser object will be saved. You can subclass the management command and override get_input_data() if you want ... ponse. migrate_heading - A heading in a migrations management command. migrate_label - A migration name. Each of ... m django-admin commands を読んでください。 Running management commands from your code ¶ django.core.management. ... command ( name , * args , ** options ) ¶ To call a management command from code use call_command . name the name ...
https://man.plustar.jp/django/ref/django-admin.html - [similar]
How to create custom django-admin commands — Django 4.0.6 ドキュメント 9094
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を追加します。 独自のコマンドを追加するためには、 `` management/commands``ディレクトリをアプリケーションに追加して ... に登録します。 例: polls / __init__ . py models . py management / __init__ . py commands / __init__ . py _private ... 場合に特に有用です。 コマンドを実装するには、 polls/management/commands/closepoll.py を以下のように編集してくださ ... い: from django.core.management.base import BaseCommand , CommandError from polls. ...
https://man.plustar.jp/django/howto/custom-management-commands.html - [similar]
PREV 1 2 3 4 5 6 7 8 NEXT