Opened 15 years ago

Last modified 13 years ago

#11496 closed

max_value validation is inconsistant — at Initial Version

Reported by: bobbo717@… Owned by: nobody
Component: Documentation Version: dev
Severity: Keywords: max_value
Cc: Triage Stage: Accepted
Has patch: yes Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

I am attempting to use validation in the following modelform:

class BatchForm(ModelForm):

amount = forms.DecimalField(max_digits=8,decimal_places=2,max_value=599999.99)
class Meta:

model = Batch
exclude = ('submit_date','user')

Sometimes is_valid() returns true and sometimes it returns false with the amount 1212.

The error returnedis:

Ensure this value is less than or equal to 599999.99.

Is this a know issue?

Version Django-1.0.2-final Python 2.5.1 Mac OSX 10.5.7

Change History (0)

Note: See TracTickets for help on using tickets.
Back to Top