mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #32559 -- Added 'step_size’ to numeric form fields.
Co-authored-by: Jacob Rief <jacob.rief@uibk.ac.at>
This commit is contained in:
committed by
Carlton Gibson
parent
68da6b389c
commit
3a82b5f655
@@ -297,6 +297,11 @@ Forms
|
||||
error messages for invalid number of forms by passing ``'too_few_forms'``
|
||||
and ``'too_many_forms'`` keys.
|
||||
|
||||
* :class:`~django.forms.IntegerField`, :class:`~django.forms.FloatField`, and
|
||||
:class:`~django.forms.DecimalField` now optionally accept a ``step_size``
|
||||
argument. This is used to set the ``step`` HTML attribute, and is validated
|
||||
on form submission.
|
||||
|
||||
Generic Views
|
||||
~~~~~~~~~~~~~
|
||||
|
||||
@@ -444,7 +449,10 @@ Utilities
|
||||
Validators
|
||||
~~~~~~~~~~
|
||||
|
||||
* ...
|
||||
* The new :class:`~django.core.validators.StepValueValidator` checks if a value
|
||||
is an integral multiple of a given step size. This new validator is used for
|
||||
the new ``step_size`` argument added to form fields representing numeric
|
||||
values.
|
||||
|
||||
.. _backwards-incompatible-4.1:
|
||||
|
||||
|
||||
Reference in New Issue
Block a user