﻿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
30125	forms.DecimalField has incorrect validator	Roman Paranichev	nobody	"django-source: site-packages/django/core/validators.py:356


{{{
@deconstructible
class MinValueValidator(BaseValidator):
    message = _('Ensure this value is greater than or equal to %(limit_value)s.')
    code = 'min_value'
    def compare(self, a, b):
        return a < b
}}}


The message says 'Ensure this value is greater than or (!!!)equal(!!!)' but compare func make only 'Greater then' comparison.
"	Bug	closed	Forms	2.1	Normal	invalid			Unreviewed	0	0	0	0	0	0
