検索

phrase: max: clip:
target: order:
Results of 21 - 30 of about 239 for default (0.127 sec.)
Form fields — Django 4.0.6 ドキュメント 6479
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... 取ることができます。 required ¶ Field. required ¶ By default, each Field class assumes the value is required, s ... For CharField , this will return empty_value which defaults to an empty string. For other Field classes, it m ... URLField () ... comment = forms . CharField () >>> default_data = { 'name' : 'Your name' , 'url' : 'http://' ... } >>> f = CommentForm ( default_data , auto_id = False ) >>> print ( f ) <tr><th>N ...
https://man.plustar.jp/django/ref/forms/fields.html - [similar]
アプリケーション — Django 4.0.6 ドキュメント 6408
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... tains the dotted path to an application module, by default, if Django finds exactly one AppConfig subclass in ... This behavior may be disabled by setting AppConfig.default to False . apps.py モジュールに複数の AppConfig の ... サブクラスが含まれている場合、Djangoは AppConfig.default が `` True`` である単一のサブクラスを探します。 も ... s 'rock_n_roll' . If you need to prevent this, set default to False in the class definition. You can provide ...
https://man.plustar.jp/django/ref/applications.html - [similar]
django.core.mail.message — Django 4.0.6 ドキュメント 6367
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... -8" ) utf8_charset . body_encoding = None # Python defaults to BASE64 utf8_charset_qp = Charset . Charset ( " ... ) utf8_charset_qp . body_encoding = Charset . QP # Default MIME type to use on attachments (if it is not expl ... icitly given # and cannot be guessed). DEFAULT_ATTACHMENT_MIME_TYPE = "application/octet-stream" ... er injection.""" encoding = encoding or settings . DEFAULT_CHARSET val = str ( val ) # val may be lazy if " \ ...
https://man.plustar.jp/django/_modules/django/core/mail/message.html - [similar]
Djangoの設定 — Django 4.0.6 ドキュメント 6306
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... LLOWED_HOSTS = [ 'www.example.com' ] DEBUG = False DEFAULT_FROM_EMAIL = 'webmaster@example.com' 注釈 もし DEB ... ces between the current settings file and Django's default settings. 詳しくは diffsettings のドキュメントを参 ... うになっています。 django.conf.settings. configure ( default_settings , ** settings ) ¶ 実装例: from django.con ... is needed at some later point, Django will use the default setting value. Configuring Django in this fashion ...
https://man.plustar.jp/django/topics/settings.html - [similar]
Django 1.7.2 release notes — Django 4.0.6 ドキュメント 6266
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... sages regression in 1.7.1 when STATIC_ROOT has the default None value ( #23717 ). Added GeoDjango compatibili ... sh that prevented changing a nullable field with a default to non-nullable with the same default ( #23738 ). ... rged the sizes of tablespaces which are created by default for testing on Oracle (the main tablespace was inc ... 9 ). Fixed the SQLite SchemaEditor to properly add defaults in the absence of a user specified default . For ...
https://man.plustar.jp/django/releases/1.7.2.html - [similar]
Advanced testing topics — Django 4.0.6 ドキュメント 6266
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... ed) example database configuration: DATABASES = { 'default' : { 'ENGINE' : 'django.db.backends.mysql' , 'NAME ... t' , 'HOST' : 'dbreplica' , 'TEST' : { 'MIRROR' : 'default' , }, # ... plus some other settings } } In this s ... rvers: dbprimary , described by the database alias default , and dbreplica described by the alias replica . A ... of dbprimary , so in normal activity, any write to default will appear on replica . If Django created two ind ...
https://man.plustar.jp/django/topics/testing/advanced.html - [similar]
QuerySet API リファレンス — Django 4.0.6 ドキュメント 6235
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... .g., when querying against a model which defines a default ordering, or when using order_by() ). If no such o ... iminates duplicate rows from the query results. By default, a QuerySet will not eliminate duplicate rows. In ... s selected, the columns used in any order_by() (or default model ordering) will still be involved and may aff ... ) [...] 注釈 Keep in mind that order_by() uses any default related model ordering that has been defined. You ...
https://man.plustar.jp/django/ref/models/querysets.html - [similar]
Django 1.7 release notes — Django 4.0.6 ドキュメント 6235
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... rs today are shipping Python 2.7 or newer as their default version. If you're still using Python 2.6, however ... length = 50 ) vegetarian = models . BooleanField ( default = False ) objects = FoodQuerySet . as_manager () F ... oreignKey ( Blog ) objects = models . Manager () # Default Manager entries = EntryManager () # Custom Manager ... forms by their step name. django.contrib.gis ¶ The default OpenLayers library version included in widgets has ...
https://man.plustar.jp/django/releases/1.7.html - [similar]
Django 3.0 リリースノート — Django 4.0.6 ドキュメント 6235
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... urns users that have the specified permission. The default iteration count for the PBKDF2 password hasher is ... ation.views.Feed to customize a feed language. The default value is get_language() instead of LANGUAGE_CODE . ... meSite , and Secure flags on language cookies. The default values of these settings preserve the previous beh ... require only the selected models' primary keys. By default, it's supported only for managed models on Postgre ...
https://man.plustar.jp/django/releases/3.0.html - [similar]
Djangoの認証システムを使用する — Django 4.0.6 ドキュメント 6235
" + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va ... r INSTALLED_APPS setting, it will ensure that four default permissions -- add, change, delete, and view -- ar ... will be redirected to. It may be a login page and defaults to settings.LOGIN_URL if you don't specify one. r ... .. As in the login_required() decorator, login_url defaults to settings.LOGIN_URL . If the raise_exception pa ... an iterable of permission names used by the mixin. Defaults to the permission_required attribute, converted t ...
https://man.plustar.jp/django/topics/auth/default.html - [similar]
PREV 1 2 3 4 5 6 7 8 9 10 11 12 NEXT