検索

phrase: max: clip:
target: order:
Results of 91 - 100 of about 257 for all (0.054 sec.)
マイグレーション操作 — Django 4.0.6 ドキュメント 4900
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ations --empty yourappname , but be aware that manually adding schema-altering operations can confuse the ... オプションの辞書オブジェクトです。 bases is an optional list of other classes to have this model inherit fr ... mporary and just for this migration ( False ) - usually because the migration is adding a non-nullable fi ... odel. Bear in mind that when reversed, this is actually adding a field to a model. The operation is rever ...
https://man.plustar.jp/django/ref/migration-operations.html - [similar]
The Django template language: for Python programmers — Django 4.0.6 ドキュメン... 4900
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... the template with a Context . Django projects generally rely on the high level, backend agnostic APIs for ... autoescape = True ) ¶ When instantiating an Engine all arguments must be passed as keyword arguments: dir ... xt_processors is a list of dotted Python paths to callables that are used to populate the context when a ... template is rendered with a request. These callables take a request object as their argument and r ...
https://man.plustar.jp/django/ref/templates/api.html - [similar]
モデルからフォームを作成する — Django 4.0.6 ドキュメント 4900
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rField PositiveIntegerField IntegerField PositiveSmallIntegerField IntegerField SlugField SlugField Small ... AutoField フォーム上では表示されません。 SmallIntegerField IntegerField TextField CharField で wi ... ultipleChoiceField ( queryset = Author . objects . all ()) ModelForm の検証 (バリデーション) ¶ ModelForm ... ethod to your ModelForm subclass. After you've manually saved the instance produced by the form, you can ...
https://man.plustar.jp/django/topics/forms/modelforms.html - [similar]
Django の概要 — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rs are in the system yet. >>> Reporter . objects . all () < QuerySet [] > # Create a new Reporter. >>> r ... # Save the object into the database. You have to call save() explicitly. >>> r . save () # Now it has an ... orter is in the database. >>> Reporter . objects . all () < QuerySet [ < Reporter : John Smith > ] > # Fi ... objects . get ( id = 2 ) Traceback ( most recent call last ): ... DoesNotExist : Reporter matching query ...
https://man.plustar.jp/django/intro/overview.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ル、ミドルウェアなどが含まれます。これらは一般に INSTALLED_APPS 設定で有効になり、それ以外では URLconfs、 M ... models, etc. (which would require adding it to INSTALLED_APPS ). アプリケーションを設定する ¶ アプリケーシ ... ppConfig のサブクラスを定義してください。 When INSTALLED_APPS contains the dotted path to an application ... ig の基底クラスが使用されます。 Alternatively, INSTALLED_APPS may contain the dotted path to a configurat ...
https://man.plustar.jp/django/ref/applications.html - [similar]
GIS QuerySet API リファレンス — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... | up | next » GIS QuerySet API リファレンス ¶ Spatial Lookups ¶ The spatial lookups in this section are a ... nd RasterField . For an introduction, see the spatial lookups introduction . For an overview of what look ... th a particular spatial backend, refer to the spatial lookup compatibility table . Lookups with rasters ¶ ... All examples in the reference below are given for geom ...
https://man.plustar.jp/django/ref/contrib/gis/geoquerysets.html - [similar]
GeoDjango Model API — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tial fields have the following additional options. All are optional. srid ¶ BaseSpatialField. srid ¶ Sets ... rdinate systems, e.g. constructing a query to find all points within 5 miles of a county boundary stored ... ian, plane. Projected coordinate systems are especially convenient for region-specific applications, e.g. ... rent manner than regular database indexes. Specifically, spatial indexes are typically created using a va ...
https://man.plustar.jp/django/ref/contrib/gis/model-api.html - [similar]
Django 1.4.13 release notes — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... curity issues in 1.4.12. Caches may incorrectly be allowed to store and serve private data ¶ In certain s ... ituations, Django may allow caches to store private data related to a partic ... equests with a different session, or no session at all. This can lead to information disclosure and can b ... ion, modifications to the Cache-Control header for all Internet Explorer requests with a Content-Disposit ...
https://man.plustar.jp/django/releases/1.4.13.html - [similar]
Django 1.5.8 release notes — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ecurity issues in 1.5.8. Caches may incorrectly be allowed to store and serve private data ¶ In certain s ... ituations, Django may allow caches to store private data related to a partic ... equests with a different session, or no session at all. This can lead to information disclosure and can b ... ion, modifications to the Cache-Control header for all Internet Explorer requests with a Content-Disposit ...
https://man.plustar.jp/django/releases/1.5.8.html - [similar]
モデル — Django 4.0.6 ドキュメント 4850
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... す。そのためには、設定ファイルを編集して、設定値 INSTALLED_APPS に、定義した models.py を含むモジュール名を ... よってアプリケーション内に構築されるものです)、 INSTALLED_APPS の部分を次のように定義します。 INSTALLED_AP ... PS = [ #... 'myapp' , #... ] INSTALLED_APPS 内に新たなアプリケーションを追加した場合、 ... son ( models . Model ): SHIRT_SIZES = ( ( 'S' , 'Small' ), ( 'M' , 'Medium' ), ( 'L' , 'Large' ), ) name ...
https://man.plustar.jp/django/topics/db/models.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 NEXT