検索

phrase: max: clip:
target: order:
Results of 121 - 130 of about 239 for Default (0.052 sec.)
GeoDjango Installation — Django 4.0.6 ドキュメント 4679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ler, follow the on-screen directions, and keep the default options unless you know the consequences of changi ... ck next to begin the PostGIS installer. Select the default options during install. The install process includ ... es three Yes/No dialog boxes, the default option for all three is "No". OSGeo4W ¶ The OSGeo4 ... hat GDAL is selected; MapServer is also enabled by default, but is not required by GeoDjango and may be unche ...
https://man.plustar.jp/django/ref/contrib/gis/install/index.html - [similar]
The Django Template Language — Django 4.0.6 ドキュメント 4679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... を引き起こす可能性があります。例えば、`` collections.defaultdict`` すべてをループ処理をしようとする、次のコード ... スニペットを考えてみましょう: {% for k , v in defaultdict.items %} Do something with k and v here... {% ... e some of the more commonly used template filters: default If a variable is false or empty, use given default ... the value of the variable. For example: {{ value | default :"nothing" }} If value isn't provided or is empty, ...
https://man.plustar.jp/django/ref/templates/language.html - [similar]
バリデータ — Django 4.0.6 ドキュメント 4679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r a given regular expression with re.search() . By default, raises a ValidationError with message and code if ... led regular expression created with re.compile() . Defaults to the empty string, which will be found in every ... ion, and flags is overridden, TypeError is raised. Defaults to 0 . EmailValidator ¶ class EmailValidator ( me ... ssage used by ValidationError if validation fails. Defaults to "Enter a valid email address" . code ¶ バリデー ...
https://man.plustar.jp/django/ref/validators.html - [similar]
ロギング — Django 4.0.6 ドキュメント 4679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... EVEL' , 'INFO' ), 'propagate' : False , }, }, } By default, this config sends messages from the django logger ... to the console. This is the same level as Django's default logging config, except that the default config onl ... hat will be used to configure Django's loggers. By default, it points at Python's logging.config.dictConfig() ... ogging . config . dictConfig ( ... ) Note that the default configuration process only calls LOGGING_CONFIG on ...
https://man.plustar.jp/django/topics/logging.html - [similar]
Django オブジェクトのシリアル化 — Django 4.0.6 ドキュメント 4679
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... Place ): serves_hot_dogs = models . BooleanField ( default = False ) If you only serialize the Restaurant mod ... coder class LazyEncoder ( DjangoJSONEncoder ): def default ( self , obj ): if isinstance ( obj , YourCustomTy ... pe ): return str ( obj ) return super () . default ( obj ) You can then pass cls=LazyEncoder to the s ... d by the PK or sequence of PKs. Natural keys ¶ The default serialization strategy for foreign keys and many-t ...
https://man.plustar.jp/django/topics/serialization.html - [similar]
モデルインスタンスリファレンス — Django 4.0.6 ドキュメント 4648
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... def from_db ( cls , db , field_names , values ): # Default implementation of from_db() (subject to change and ... ce_insert = False , force_update = False , using = DEFAULT_DB_ALIAS , update_fields = None ) ¶ For details on ... nvenience, each model has an AutoField named id by default unless you explicitly specify primary_key=True on ... e object's primary key attribute does not define a default , Django follows this algorithm: オブジェクトのプラ ...
https://man.plustar.jp/django/ref/models/instances.html - [similar]
Django のショートカット関数 — Django 4.0.6 ドキュメント 4648
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... onary of values to add to the template context. By default, this is an empty dictionary. If a value in the di ... e The MIME type to use for the resulting document. Defaults to 'text/html' . status The status code for the r ... esponse. Defaults to 200 . using The NAME of a template engine to u ... h will be used as-is for the redirect location. By default issues a temporary redirect; pass permanent=True t ...
https://man.plustar.jp/django/topics/http/shortcuts.html - [similar]
タイムゾーン — Django 4.0.6 ドキュメント 4648
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... g with end users. Time zone support is disabled by default. To enable it, set USE_TZ = True in your settings ... n Django 5.0, time zone support will be enabled by default. Time zone support uses zoneinfo , which is part o ... dded. Changed in Django 4.0: zoneinfo was made the default timezone implementation. You may continue to use p ... 入れます。データベースレイヤがこれを受け取ったとき、 default time zone で変換して aware に直そうとし、警告を投げ ...
https://man.plustar.jp/django/topics/i18n/timezones.html - [similar]
Testing GeoDjango apps — Django 4.0.6 ドキュメント 4608
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... GIS ¶ 設定 ¶ 注釈 The settings below have sensible defaults, and shouldn't require manual setting. POSTGIS_VE ... add superuser privileges to your database user. By default, the PostGIS installer on Windows includes a templ ... uding those in django.contrib.gis : DATABASES = { 'default' : { 'ENGINE' : 'django.contrib.gis.db.backends.po ...
https://man.plustar.jp/django/ref/contrib/gis/testing.html - [similar]
Django 1.3.6 release notes — Django 4.0.6 ドキュメント 4608
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... e documentation for the ALLOWED_HOSTS setting. The default value for this setting in Django 1.3.6 is ['*'] (m ... strictly-enforced maximum number of forms (1000 by default, though it can be set higher via the max_num forms ...
https://man.plustar.jp/django/releases/1.3.6.html - [similar]