検索

phrase: max: clip:
target: order:
Results of 61 - 70 of about 257 for all (0.107 sec.)
Django の admin サイト — Django 4.0.6 ドキュメント 5327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ssages , and django.contrib.sessions - to your INSTALLED_APPS setting. Configure a DjangoTemplates backen ... e user has the is_staff attribute set to True . Finally, determine which of your application's models sho ... presentation of a model in the admin interface. Usually, these are stored in a file named admin.py in you ... it__(*args, **kwargs) . admin ファイルの発見 ¶ INSTALLED_APPS 設定内に 'django.contrib.admin' を記述すると ...
https://man.plustar.jp/django/ref/contrib/admin/index.html - [similar]
GeoDjango Management Commands — Django 4.0.6 ドキュメント 5327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... n inspectdb When django.contrib.gis is in your INSTALLED_APPS , the inspectdb management command is overr ... one from GeoDjango. The overridden command is spatially-aware, and places geometry fields in the auto-gen ... to the field definition. Set with true to apply to all applicable fields. --decimal DECIMAL ¶ Use a comma ... f the default FloatField . Set to true to apply to all OGR float fields. --geom-name GEOM_NAME ¶ Specifie ...
https://man.plustar.jp/django/ref/contrib/gis/commands.html - [similar]
Full text search — Django 4.0.6 ドキュメント 5327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... kup, 'django.contrib.postgres' must be in your INSTALLED_APPS . SearchVector ¶ class SearchVector ( * exp ... a space so that the search document includes them all. SearchVector objects can be combined together, al ... database compares to a search vector. By default, all the words the user provides are passed through the ... ming algorithms, and then it looks for matches for all of the resulting terms. If search_type is 'plain' ...
https://man.plustar.jp/django/ref/contrib/postgres/search.html - [similar]
Django 1.10 リリースノート — Django 4.0.6 ドキュメント 5327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ポート ¶ The User model in django.contrib.auth originally only accepted ASCII letters and numbers in userna ... ました。 The new InlineModelAdmin.classes attribute allows specifying classes on inline fieldsets. Inlines ... with a collapse class will be initially collapsed and their header will have a small "sho ... a JSON structure so that the message can be dynamically translated using the current active language. A n ...
https://man.plustar.jp/django/releases/1.10.html - [similar]
Django 1.4 release notes — Django 4.0.6 ドキュメント 5327
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ate/times in UTC, use timezone-aware objects internally, and translate them to users' local timezones for ... one aware mode may take some care: the new mode disallows some rather sloppy behavior that used to be acc ... 5, 2.6 and 2.7. This change should affect only a small number of Django users, as most operating-system v ... h developer to interpret what a given date/time "really means". This can cause all sorts of subtle timezo ...
https://man.plustar.jp/django/releases/1.4.html - [similar]
Single object mixins — Django 4.0.6 ドキュメント 5268
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... el = Foo と指定することは、 queryset = Foo.objects.all() の効率的な書き方で、 objects は Foo の デフォルト ... 用する際には注意が必要です。この属性を使用する際は、 all() メソッドを呼び出すか、内部で複製処理を行う get_q ... direct object reference attacks. When applications allow access to individual objects by a sequential pri ... mary key, an attacker could brute-force guess all URLs; thereby obtaining a list of all objects in t ...
https://man.plustar.jp/django/ref/class-based-views/mixins-single-object.html - [similar]
クラスベースのビューでミックスインを使用する — Django 4.0.6 ドキュメント 5268
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... のリファレンスドキュメントは full documentation of all the mixins を含んでいます。 コンテキストとテンプレ ... 例を参照してください。 render_to_response() itself calls get_template_names() , which by default will look ... e (including TemplateResponseMixin above), should call get_context_data() passing any data they want to e ... stView , which will render a list of objects, typically from a queryset, and optionally paginate them. Th ...
https://man.plustar.jp/django/topics/class-based-views/mixins.html - [similar]
条件付きビュー — Django 4.0.6 ドキュメント 5268
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... page (using an HTTP GET request) to avoid sending all the data for something the client has already retr ... ieved. However, the same headers can be used for all HTTP methods ( POST , PUT , DELETE , etc.). For ea ... odified time for a resource, without needing to do all the computations needed to construct the full view ... resource must be computed and your normal view is called. condition デコレータのシグネチャは次のようになり ...
https://man.plustar.jp/django/topics/conditional-view-processing.html - [similar]
はじめての Django アプリ作成、その2 — Django 4.0.6 ドキュメント 5218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... and get a quick introduction to Django's automatically-generated admin site. 困ったときは: このチュートリ ... ゾーンも設定します。 同じく、ファイル先頭にある INSTALLED_APPS に注意してください。これはこのDjangoインスタ ... ジして配布することもできます。 デフォルトでは、 INSTALLED_APPS には以下のアプリケーションが入っています。 ... ge.py migrate The migrate command looks at the INSTALLED_APPS setting and creates any necessary database ...
https://man.plustar.jp/django/intro/tutorial02.html - [similar]
Admin actions — Django 4.0.6 ドキュメント 5218
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rite and register "actions" -- functions that get called with a list of objects selected on the change li ... th a "delete selected objects" action available to all models. For example, here's the user module from D ... etion in your preferred manner -- for example, by calling Model.delete() for each of the selected items. ... ¶ First, we'll need to write a function that gets called when the action is triggered from the admin. Act ...
https://man.plustar.jp/django/ref/contrib/admin/actions.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 NEXT