Django Public Recipes
The fieldName is a name for the field in your model. The max_digits and decimal_places arguments set the maximum and number of digits in the field, respectively.
Library: django
Shortcut: django.field.decimal
fieldName = models.DecimalField(max_digits=None, decimal_places=None)