summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorHasan Ramezani <hasan.r67@gmail.com>2020-04-25 21:20:29 +0200
committerGitHub <noreply@github.com>2020-04-25 21:20:29 +0200
commitd6db186427d33889e4d2f3b56e02807d51fc0376 (patch)
tree00fe27d591c1d672cac774948ef77da5c6a3ea67 /docs
parentda606513db16a718e0566b3514ce0b3692fde088 (diff)
Fixed #31514 -- Fixed default form widgets in model fields docs.
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/models/fields.txt10
1 files changed, 5 insertions, 5 deletions
diff --git a/docs/ref/models/fields.txt b/docs/ref/models/fields.txt
index 19750eedc3..71960e897e 100644
--- a/docs/ref/models/fields.txt
+++ b/docs/ref/models/fields.txt
@@ -546,7 +546,7 @@ guaranteed to fit numbers from ``1`` to ``9223372036854775807``.
A 64-bit integer, much like an :class:`IntegerField` except that it is
guaranteed to fit numbers from ``-9223372036854775808`` to
``9223372036854775807``. The default form widget for this field is a
-:class:`~django.forms.TextInput`.
+:class:`~django.forms.NumberInput`.
``BinaryField``
---------------
@@ -647,7 +647,7 @@ optional arguments:
:func:`django.utils.timezone.now`
The default form widget for this field is a
-:class:`~django.forms.TextInput`. The admin adds a JavaScript calendar,
+:class:`~django.forms.DateInput`. The admin adds a JavaScript calendar,
and a shortcut for "Today". Includes an additional ``invalid_date`` error
message key.
@@ -677,7 +677,7 @@ A date and time, represented in Python by a ``datetime.datetime`` instance.
Takes the same extra arguments as :class:`DateField`.
The default form widget for this field is a single
-:class:`~django.forms.TextInput`. The admin uses two separate
+:class:`~django.forms.DateTimeInput`. The admin uses two separate
:class:`~django.forms.TextInput` widgets with JavaScript shortcuts.
``DecimalField``
@@ -1286,7 +1286,7 @@ However it is not enforced at the model or database level. Use a
A time, represented in Python by a ``datetime.time`` instance. Accepts the same
auto-population options as :class:`DateField`.
-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.TimeInput`.
The admin adds some JavaScript shortcuts.
``URLField``
@@ -1297,7 +1297,7 @@ The admin adds some JavaScript shortcuts.
A :class:`CharField` for a URL, validated by
:class:`~django.core.validators.URLValidator`.
-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.URLInput`.
Like all :class:`CharField` subclasses, :class:`URLField` takes the optional
:attr:`~CharField.max_length` argument. If you don't specify