1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Fixed #22654 -- Broken decimal validation

This commit is contained in:
Raphael Michel
2017-04-06 17:34:00 +02:00
committed by Florian Apolloner
parent fd892f3443
commit bde814142a
4 changed files with 37 additions and 2 deletions

View File

@@ -157,6 +157,10 @@ Forms
HTML attributes for the ``DateInput`` and ``TimeInput`` (or hidden)
subwidgets.
* :class:`~django.forms.FloatField` and :class:`~django.forms.DecimalField`
now handle :setting:`DECIMAL_SEPARATOR` and :setting:`THOUSAND_SEPARATOR`
correctly when :setting:`USE_L10N` is off.
Generic Views
~~~~~~~~~~~~~