I want users to be able to enter a standard decimal value like 1.51 or enter a value in scientific notation like 4.08E+13.
I set up a decimal field in my model but when I try to enter the above example I get this validation message:
"Ensure that there are no more than 3 decimal places."
Side note:
I did notice that Python already supports this format:
>>> from decimal import Decimal
>>> print Decimal("4.08E+13")
4.08E+13
So maybe it won't be too hard to set something up in Django?