﻿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
15775	Can't enter scientific notation in decimal fields	gregthe1	Bruno Gola	"Here is an example:

{{{

>>> from django.forms import DecimalField
>>> f = DecimalField(max_digits=10, decimal_places=1)
>>> f.validate(Decimal('1E+2'))
Traceback (most recent call last):
...
ValidationError: [u'Ensure that there are no more than 1 decimal places.']
}}}


Also if I try upping the max_digits and decimal_places to something like 20, and 13, I get this error:


{{{
quantize result has too many digits for current context
}}}

"	Bug	closed	Forms	1.2	Normal	fixed			Accepted	1	0	0	1	0	0
