#11496: max_value validation is inconsistant
-----------------------------------------+----------------------------------
          Reporter:  bobbo...@gmail.com  |         Owner:  nobody   
            Status:  new                 |     Milestone:           
         Component:  Forms               |       Version:  1.0      
        Resolution:                      |      Keywords:  max_value
             Stage:  Unreviewed          |     Has_patch:  0        
        Needs_docs:  0                   |   Needs_tests:  0        
Needs_better_patch:  0                   |  
-----------------------------------------+----------------------------------
Comment (by anonymous):

 TYPE_CHOICES = (
     ('T','Today Only'),
     ('P','Permanent'),
     ('B','Both Today and Permanent')
 )

 class Batch(models.Model):
     submit_date = models.DateTimeField('Batch Time')
     user = models.CharField(max_length=25)
     amount = models.DecimalField(max_digits=8,decimal_places=2)
     type = models.CharField(max_length=1,choices=TYPE_CHOICES,default='T')
     class Meta:
         ordering = ['-submit_date']

 class Amount(models.Model):
     value = models.DecimalField(max_digits=8,decimal_places=2)

 class BatchForm(ModelForm):
     amount = forms.DecimalField(max_digits=8,decimal_places=2)
     class Meta:
         model = Batch
         exclude = ('submit_date','user')

-- 
Ticket URL: <http://code.djangoproject.com/ticket/11496#comment:4>
Django <http://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-updates?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to