Is it possible to store in my models decimal fields with four decimal places but to show only two in Django admin forms.
class MyModel(models.Model):
purchase_price_gross = models.DecimalField(
'Purchase price (gross)', validators=[MinValueValidator(0.0)],
max_digits=19, decimal_places=4)
Now in the Admin form the field is showing with 4 decimal places. But how can I restrict the forms to show only two places?