検索

phrase: max: clip:
target: order:
Results of 111 - 120 of about 481 for To (0.185 sec.)
Windows での Django のインストール方法 — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ng up a virtual environment, which makes it easier to work on Python projects. This is meant as a beginn ... ersions, the steps would be similar. You will need to be familiar with using the Windows command prompt. ... o is a Python web framework, thus requiring Python to be installed on your machine. At the time of writi ... ng, Python 3.8 is the latest version. To install Python on your machine go to https://www.p ...
https://man.plustar.jp/django/howto/windows.html - [similar]
The flatpages app — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... an optional "flatpages" application. It lets you store "flat" HTML content in a database and handles th ... s "About" or "Privacy Policy" pages, that you want to store in a database but for which you don't want t ... o develop a custom Django application. A flatpage can use a custom t ... t field may optionally be left blank if you prefer to put your content in a custom template. インストール ...
https://man.plustar.jp/django/ref/contrib/flatpages.html - [similar]
GeoDjango's admin site — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... lass GISModelAdmin ¶ gis_widget ¶ The widget class to be used for GeometryField . Defaults to OSMWidget ... wargs ¶ The keyword arguments that would be passed to the gis_widget . Defaults to an empty dictionary. ... er latitude. default_zoom ¶ The default zoom level to use. Defaults to 4. extra_js ¶ Sequence of URLs to ... any extra JavaScript to include. map_template ¶ Override the template used ...
https://man.plustar.jp/django/ref/contrib/gis/admin.html - [similar]
PostgreSQL specific model fields — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... better suited, though the index choice is dependent on the queries that you're using. Generally, GiST m ... ay be a good choice for the range fields and HStoreField , and GIN may be helpful for ArrayField . A ... _field , size = None , ** options ) ¶ A field for storing lists of data. Most field types can be used, a ... may also specify a size . ArrayField can be nested to store multi-dimensional arrays. If you give the fi ...
https://man.plustar.jp/django/ref/contrib/postgres/fields.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... log models を使用します。 オブジェクトを作成する ¶ To create a new instance of a model, instantiate it l ... r model. Note that instantiating a model in no way touches your database; for that, you need to save() . ... dels.DEFERRED の値が設定されています。 In addition to creating the new model, the from_db() method must ... ): # Default implementation of from_db() (subject to change and could # be replaced with super()). if l ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
Django 1.6.5 release notes — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... in 1.6.4. Issue: Caches may incorrectly be allowed to store and serve private data ¶ In certain situatio ... ns, Django may allow caches to store private data related to a particular session ... and then serve that data to requests with a different session, or no session a ... t all. This can lead to information disclosure and can be a vector for cac ...
https://man.plustar.jp/django/releases/1.6.5.html - [similar]
Django 1.7.1 release notes — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... vious | up | next » Django 1.7.1 release notes ¶ October 22, 2014 Django 1.7.1 fixes several bugs in 1.7 ... . Bugfixes ¶ Allowed related many-to-many fields to be referenced in the admin ( #23604 ... ). Added a more helpful error message if you try to migrate an app without first creating the contentt ... #22411 ). Modified migrations dependency algorithm to avoid possible infinite recursion. Fixed a Unicode ...
https://man.plustar.jp/django/releases/1.7.1.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rsion of six, django.utils.six , has been upgraded to the latest release (1.9.0). Bugfixes ¶ Fixed migra ... tion's renaming of auto-created many-to-many tables when changing Meta.db_ ... a migration crash when adding an explicit id field to a model on SQLite ( #23702 ). Added a warning for ... n removing a field that is referenced in AlterIndexTogether or AlterUniqueTogether ( #23614 ). Updated t ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
クエリを作成する — Django 4.0.6 ドキュメント 4753
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... out this guide (and in the reference), we'll refer to the following models, which comprise a blog applic ... ) mod_date = models . DateField ( default = date . today ) authors = models . ManyToManyField ( Author ) ... o はデータベースを操作しません。 ForeignKey と ManyToManyField フィールドを扱う ¶ Updating a ForeignKey ... ame way as saving a normal field -- assign an object of the right type to the field in question. This ex ...
https://man.plustar.jp/django/topics/db/queries.html - [similar]
django.utils.module_loading — Django 4.0.6 ドキュメント 4737
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ils.module_loading のソースコード import copy import os import sys from importlib import import_module f ... s' % ( module_path , class_name ) ) from err def autodiscover_modules ( * args , ** kwargs ): """ Auto-d ... ail silently when not present. This forces an import on them to register any admin bits they may want. Y ... ou may provide a register_to keyword parameter as a way to access a registry. T ...
https://man.plustar.jp/django/_modules/django/utils/module_loading.html - [similar]