﻿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
7064	Decimal validation doesn't correctly handle max_digits == decimal_places	Craig Ogg	Karen Tracey	"If you have a decimal field defined in a model with max_digits and decimal_places set to the same value (for values 0 <= |n| < 1), you will get the following error message incorrectly when you enter any valid value:

 * Please enter a valid decimal number with a whole part of at most 0 digits.

You will also get the following error message incorrectly if the number you enter has decimal_places number of digits:

 * Please enter a valid decimal number with at most %s total digits.

This is because the leading 0 that str() produces is considered a digit in the validation code (e.g., .35 and 0.35 are treated as 3 digit numbers, with 0 as a digit in the ""whole part"")."		closed	Validators	dev		fixed	decimal validation		Accepted	1	0	0	0	0	0
