Hello,
How to display the DecimalField without the E (scientific) notation in the django admin?
Here is my field:
models.DecimalField(max_digits=12, decimal_places=8, null=True)
Here is what I see in the admin:
0E-8.00000000 # on the table
0E-8 # in the form
I am using Django 1.6.7
Thanks for your help
Michael