Model Django Field Nomor Float

float = models.DecimalField(max_digits=5,decimal_places=2)
#max_digits is maximum number of digits allowed in the number. 
#Note that this number must be greater than or equal to decimal_places.
MitchAloha