From d6db186427d33889e4d2f3b56e02807d51fc0376 Mon Sep 17 00:00:00 2001 From: Hasan Ramezani <hasan.r67@gmail.com> Date: Sat, 25 Apr 2020 21:20:29 +0200 Subject: [PATCH] Fixed #31514 -- Fixed default form widgets in model fields docs. --- docs/ref/models/fields.txt | 10 +++++----- 1 file 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