Clarified the default form widgets for model number fields in docs
This commit is contained in:
parent
f67127e0af
commit
77f3d7adb1
|
@ -557,7 +557,9 @@ decimal places::
|
||||||
|
|
||||||
models.DecimalField(..., max_digits=19, decimal_places=10)
|
models.DecimalField(..., max_digits=19, decimal_places=10)
|
||||||
|
|
||||||
The default form widget for this field is a :class:`~django.forms.TextInput`.
|
The default form widget for this field is a :class:`~django.forms.NumberInput`
|
||||||
|
when :attr:`~django.forms.Field.localize` is ``False`` or
|
||||||
|
:class:`~django.forms.TextInput` otherwise.
|
||||||
|
|
||||||
.. note::
|
.. note::
|
||||||
|
|
||||||
|
@ -872,7 +874,9 @@ can change the maximum length using the :attr:`~CharField.max_length` argument.
|
||||||
|
|
||||||
A floating-point number represented in Python by a ``float`` instance.
|
A floating-point number represented in Python by a ``float`` instance.
|
||||||
|
|
||||||
The default form widget for this field is a :class:`~django.forms.TextInput`.
|
The default form widget for this field is a :class:`~django.forms.NumberInput`
|
||||||
|
when :attr:`~django.forms.Field.localize` is ``False`` or
|
||||||
|
:class:`~django.forms.TextInput` otherwise.
|
||||||
|
|
||||||
.. _floatfield_vs_decimalfield:
|
.. _floatfield_vs_decimalfield:
|
||||||
|
|
||||||
|
@ -927,7 +931,8 @@ The default form widget for this field is a
|
||||||
|
|
||||||
An integer. Values from ``-2147483648`` to ``2147483647`` are safe in all
|
An integer. Values from ``-2147483648`` to ``2147483647`` are safe in all
|
||||||
databases supported by Django. The default form widget for this field is a
|
databases supported by Django. The default form widget for this field is a
|
||||||
:class:`~django.forms.TextInput`.
|
:class:`~django.forms.NumberInput` when :attr:`~django.forms.Field.localize`
|
||||||
|
is ``False`` or :class:`~django.forms.TextInput` otherwise.
|
||||||
|
|
||||||
``GenericIPAddressField``
|
``GenericIPAddressField``
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
Loading…
Reference in New Issue