﻿id	summary	reporter	owner	description	type	status	component	version	severity	resolution	keywords	cc	stage	has_patch	needs_docs	needs_tests	needs_better_patch	easy	ui_ux
32559	Add attribute 'step' to FloatField.	Jacob Rief	Jacob Rief	"If someone wants to use the `step` attribute as provided by the HTML field
`<input type=""number"" ...>` , she/he has to specify that using for instance
`FloatField(widget=NumberInput(attrs={'step': 0.5}))`.

Since the HTML standard offers a `step` attribute on input fields of `type=""number""`,
this feature shall be reflected by Django's `FloatField` and  optionally `DecimalField`,
rather than having to parametrize the widget.

Min- and max-values are already supported by the `FloatField`, so the step-value
would make sense here as well. It furthermore would require to revalidate the
step-value by Django's Form validation, rather than by HTML alone.

Patch: https://github.com/django/django/pull/14162
"	New feature	closed	Forms	dev	Normal	fixed	FloatField, NumberInput, step		Ready for checkin	1	0	0	0	0	0
