Within my Django models I have created a decimal field like this:
price = models.DecimalField(_(u\'Price\'), decimal_places=2, max_digits=12)
O
You could do something like this :
# ..... class priceForm(ModelForm): price = forms.DecimalField(required=False, max_digits=6, min_value=0)
This, also, is responsible for the validator value of 'price'.