検索

phrase: max: clip:
target: order:
Results of 11 - 20 of about 572 for Index (0.021 sec.)
django.core.paginator — Django 4.0.6 ドキュメント 5792
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules up django.core.paginator のソースコード ... en ( self . object_list ) def __getitem__ ( self , index ): if not isinstance ( index , ( int , slice )): r ... ces must be integers or slices, not %s ." % type ( index ) . __name__ ) # The object_list is converted to a ... ( self . object_list ) return self . object_list [ index ] [ドキュメント] def has_next ( self ): return sel ...
https://man.plustar.jp/django/_modules/django/core/paginator.html - [similar]
Model Meta options — Django 4.0.6 ドキュメント 5792
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Model Meta opti ... ) for more about the old and new saving algorithm. indexes ¶ Options. indexes ¶ A list of indexes that you ... dels . CharField ( max_length = 100 ) class Meta : indexes = [ models . Index ( fields = [ 'last_name' , 'f ... irst_name' ]), models . Index ( fields = [ 'first_name' ], name = 'first_name_id ...
https://man.plustar.jp/django/ref/models/options.html - [similar]
Django 1.11.1 リリースノート — Django 4.0.6 ドキュメント 5580
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.11.1 リ ... ore discussion. Bugfixes ¶ Made migrations respect Index 's name argument. If you created a named index wit ... migrations will create a migration to recreate the index with the correct name ( #28051 ). Fixed a crash wh ... ding the template of django.views.static.directory_index() ( #28122 ). Fixed a regression in formset min_nu ...
https://man.plustar.jp/django/releases/1.11.1.html - [similar]
システムチェックフレームワーク — Django 4.0.6 ドキュメント 5421
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » システムチェック ... lue, human readable name) tuples. fields.E006 : db_index must be None , True or False . fields.E007 : Prima ... elds.W162 : <database> does not support a database index on <field data type> columns. fields.E170 : Binary ... name> that is used by another field. models.E008 : index_together must be a list or tuple. models.E009 : Al ...
https://man.plustar.jp/django/ref/checks.html - [similar]
URL ディスパッチャ — Django 4.0.6 ドキュメント 5323
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » URL ディスパッチ ... t views urlpatterns = [ path ( '' , views . blog . index ), path ( 'archive/' , views . blog . archive ), ] ... アプリケーションのメインインデックスページは 'admin:index' で参照されます。 これは 'admin' という名前空間と ... 'index' という名前の URL を示します。 名前空間はネストする ...
https://man.plustar.jp/django/topics/http/urls.html - [similar]
はじめての Django アプリ作成、その 5 — Django 4.0.6 ドキュメント 5217
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » はじめての Djan ... rse >>> response = client . get ( reverse ( 'polls:index' )) >>> response . status_code 200 >>> response . ... ベースビューを導入しました。 polls/views.py ¶ class IndexView ( generic . ListView ): template_name = 'polls ... /index.html' context_object_name = 'latest_question_list' ...
https://man.plustar.jp/django/intro/tutorial05.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 5164
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » Django 1.7.2 re ... h when removing a field that is referenced in AlterIndexTogether or AlterUniqueTogether ( #23614 ). Updated ... n crash when a field is renamed that is part of an index_together ( #23859 ). Fixed squashmigrations to res ... migrations when deleting a field that is part of a index/unique_together constraint ( #23794 ). Fixed djang ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
Django 1.4 documentation 5111
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... す。 特定のトピックについて情報を探しているなら、 genindex や modindex 、 内容の詳細な表 を見てください。 dja ... て DROP TABLE 文を出力します。 python manage.py sqlindexes polls – アプリケー ション用の CREATE INDEX 文を出 ... n manage.py sqlall polls – ‘sql', ‘sqlcustom', ‘sqlindexes' コマンドを合わせたものです。 これらのコマンドの ... いはずです。 カスタマイズすべきテンプレートは admin/index.html です (前節の admin/base_site.html の場合と同じ ...
https://man.plustar.jp/django/contents.html - [similar]
django.urls functions for use in URLconfs — Django 4.0.6 ドキュメント 5111
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » django.urls fun ... urls import include , path urlpatterns = [ path ( 'index/' , views . index , name = 'main-view' ), path ( ' ... rt include , re_path urlpatterns = [ re_path ( r '^index/$' , views . index , name = 'index' ), re_path ( r ...
https://man.plustar.jp/django/ref/urls.html - [similar]
GeoDjango Model API — Django 4.0.6 ドキュメント 5058
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ango 4.0.6 ドキュメント Home | Table of contents | Index | Modules « previous | up | next » GeoDjango Model ... eographic coordinate system such as WGS84. spatial_index ¶ BaseSpatialField. spatial_index ¶ Defaults to Tr ... ue . Creates a spatial index for the given geometry field. 注釈 This is differe ... nt from the db_index field option because spatial indexes are created i ...
https://man.plustar.jp/django/ref/contrib/gis/model-api.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 NEXT