Results of 1 - 10 of about 22 for bound (0.069 sec.)
- PostgreSQL specific model fields — Django 4.0.6 ドキュメント 13922
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
s in Python, but also accept tuples as input if no bounds information is necessary. The default is lower bo ...
und included, upper bound excluded, that is [) (see the PostgreSQL documenta ...
tion for details about different bounds ). IntegerRangeField ¶ class IntegerRangeField ( ...
se and a NumericRange in Python. Regardless of the bounds specified when saving the data, PostgreSQL always ...
-
https://man.plustar.jp/django/ref/contrib/postgres/fields.html
- [similar]
- django.utils.decorators — Django 4.0.6 ドキュメント 11447
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
er ( _wrapper , decorator ): # _multi_decorate()'s bound_method isn't available in this scope. Cheat by # u ...
rs ] def _wrapper ( self , * args , ** kwargs ): # bound_method has the signature that 'decorator' expects ...
function because new # attributes can't be set on bound method objects, only on functions. bound_method = ...
( self , type ( self )))) for dec in decorators : bound_method = dec ( bound_method ) return bound_method ...
-
https://man.plustar.jp/django/_modules/django/utils/decorators.html
- [similar]
- フォーム API — Django 4.0.6 ドキュメント 11043
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
working with forms 1 を読むことをおすすめします。 Bound and unbound forms ¶ Form インスタンスには、データに ...
渡すデータの型は Field によって決まります。 Form. is_bound ¶ フォームインスタンスがくくりつけられているかいな ...
の値を使用します: >>> f = ContactForm () >>> f . is_bound False >>> f = ContactForm ({ 'subject' : 'hello' } ...
) >>> f . is_bound True 空のディクショナリを渡した場合は、空のデータを ...
-
https://man.plustar.jp/django/ref/forms/api.html
- [similar]
- バリデータ — Django 4.0.6 ドキュメント 9292
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
ssage = None ) [ソース] ¶ Validates that the upper bound of the range is not greater than limit_value . Ran ...
ssage = None ) [ソース] ¶ Validates that the lower bound of the range is not less than the limit_value . 目 ...
-
https://man.plustar.jp/django/ref/contrib/postgres/validators.html
- [similar]
- The form rendering API — Django 4.0.6 ドキュメント 9073
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
a dictionary with the following values: form : The bound form. fields : All bound fields, except the hidden ...
fields. hidden_fields : All hidden bound fields. errors : All non field related or hidden f ...
-
https://man.plustar.jp/django/ref/forms/renderers.html
- [similar]
- PostgreSQL specific form fields and widgets — Django 4.0.6 ドキュメント 8871
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
iValueField . They treat one omitted value as an unbounded range. They also validate that the lower bound i ...
s not greater than the upper bound. All of these fields use RangeWidget . IntegerRang ...
and returns a tuple representing a lower and upper bound. 目次 PostgreSQL specific form fields and widgets ...
-
https://man.plustar.jp/django/ref/contrib/postgres/forms.html
- [similar]
- フォームを使う — Django 4.0.6 ドキュメント 8770
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
労力、コードを大幅に節約できます。 くくりつけられた (bound) フォームインスタンス ¶ Bound and unbound forms の ...
区別は重要です: unbound のフォームには連結したデータがありません。ユーザー ...
ンダリングするとき、空ないしデフォルト値となります。 bound のフォームは送信されたデータを持っており、したがっ ...
てデータの有効性を検証できます。無効な bound フォームがレンダリングされている場合、ユーザーがデ ...
-
https://man.plustar.jp/django/topics/forms/index.html
- [similar]
- PostgreSQL specific database constraints — Django 4.0.6 ドキュメント 8349
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
e delimiters will be '[)' , meaning that the lower bound is inclusive and the upper bound is exclusive. You ...
may use the RangeBoundary that provides an expression mapping for the ran ...
ge boundaries . For example: from django.contrib.postgres.c ...
postgres.fields import ( DateTimeRangeField , RangeBoundary , RangeOperators , ) from django.db import mode ...
-
https://man.plustar.jp/django/ref/contrib/postgres/constraints.html
- [similar]
- Form fields — Django 4.0.6 ドキュメント 8248
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
his is why initial values are only displayed for unbound forms. For bound forms, the HTML output will use t ...
he bound data. Also note that initial values are not used a ...
tr> The callable will be evaluated only when the unbound form is displayed, not when it is defined. widget ...
す。 Can validate that non-empty file data has been bound to the form. Error message keys: required , invali ...
-
https://man.plustar.jp/django/ref/forms/fields.html
- [similar]
- フォーム — Django 4.0.6 ドキュメント 7945
- " + tagname + " "); } }); $("div.highlight\\-html\\+django span.nf").each(function(i, elem) { va
...
使う トピックガイドを参照してください。 フォーム API Bound and unbound forms フォームをデータの検証に使用する ...
ウトプットする さらに詳細なアウトプット Customizing BoundField Binding uploaded files to a form Subclassing ...
-
https://man.plustar.jp/django/ref/forms/index.html
- [similar]