Django has various numeric fields available for use in models, e.g. DecimalField and PositiveIntegerField. Although the former can be restricted to the number of decimal places stored and the overall number of characters stored, is there any way to restrict it to storing only numbers within a certain range, e.g. 0.0-5.0 ?

Failing that, is there any way to restrict a PositiveIntegerField to only store, for instance, numbers up to 50?

Update: now that Bug 6845 has been closed, this StackOverflow question may be moot. - sampablokuper

link|improve this question

71% accept rate
I should have mentioned that I also want the restriction to be applied in Django's admin. For getting that, at least, the documentation has this to say: docs.djangoproject.com/en/dev/ref/contrib/admin/… – sampablokuper May 17 '09 at 1:21
Actually, pre-1.0 Django seems to have had a really elegant solution: cotellese.net/2007/12/11/… . I wonder if there's an equally elegant way of doing this in the svn release of Django. – sampablokuper May 17 '09 at 1:23
I'm disappointed to learn that there doesn't seem to be an elegant way to do this with the current Django svn. See this discussion thread for more details: groups.google.com/group/django-users/browse_thread/thread/… – sampablokuper May 17 '09 at 2:07
feedback

4 Answers

up vote 19 down vote accepted

You could also create a custom model field type - see http://docs.djangoproject.com/en/dev/howto/custom-model-fields/#howto-custom-model-fields

In this case, you could 'inherit' from the built-in IntegerField and override its validation logic.

The more I think about this, I realize how useful this would be for many Django apps. Perhaps a IntegerRangeField type could be submitted as a patch for the Django devs to consider adding to trunk.

This is working for me:

from django.db import models

class IntegerRangeField(models.IntegerField):
    def __init__(self, verbose_name=None, name=None, min_value=None, max_value=None, **kwargs):
        self.min_value, self.max_value = min_value, max_value
        models.IntegerField.__init__(self, verbose_name, name, **kwargs)
    def formfield(self, **kwargs):
        defaults = {'min_value': self.min_value, 'max_value':self.max_value}
        defaults.update(kwargs)
        return super(IntegerRangeField, self).formfield(**defaults)

Then in your model class, you would use it like this (field being the module where you put the above code):

size = fields.IntegerRangeField(min_value=1, max_value=50)

OR for a range of negative and positive (like an oscillator range):

size = fields.IntegerRangeField(min_value=-100, max_value=100)

What would be really cool is if it could be called with the range operator like this:

size = fields.IntegerRangeField(range(1:50))

But, that would require a lot more code since since you can specify a 'skip' parameter - range(1:50:2) - Interesting idea though...

link|improve this answer
+1 (but I'm out of votes for today!) – a paid nerd May 11 '09 at 20:59
2  
I think that as long as ticket #6845 remains open, this is the best solution. code.djangoproject.com/ticket/6845 – sampablokuper May 17 '09 at 13:06
feedback

There are two ways to do this. One is to use form validation to never let any number over 50 be entered by a user. Form validation docs.

If there is no user involved in the process, or you're not using a form to enter data, then you'll have to override the model's save method to throw an exception or limit the data going into the field.

link|improve this answer
Beat me to the punch on both recommendations! – David Berger May 11 '09 at 17:44
2  
You can use a form for validating non-human input, too. It works great to populate the Form as a all-around validation technique. – S.Lott May 11 '09 at 20:02
After thinking on this, I'm quite sure I don't want to put the validation in a form. The question of which range of numbers is acceptable is as much a part of the model as is the question of which kind of number is acceptable. I don't want to have to tell every form through which the model is editable, just which range of numbers to accept. This would violate DRY, and besides, it's just plain inappropriate. So I'm going to look into overriding the model's save method, or perhaps creating a custom model field type - unless I can find an even better way :) – sampablokuper May 17 '09 at 1:34
tghw, you said I could "override the model's save method to throw an exception or limit the data going into the field." How would I - from within the model definition's overriden save() method - make it so that if the number entered is outside a given range, the user receives a validation error much as if she had entered character data into a numeric field? I.e. is there some way I can do this that will work regardless of whether the user is editing via the admin or via some other form? I don't want to just limit the data going into the field without telling the user what's going on :) Thanks! – sampablokuper May 17 '09 at 3:18
feedback

I had this very same problem; here was my solution:

SCORE_CHOICES = zip( range(1,n), range(1,n) )
score = models.IntegerField(choices=SCORE_CHOICES, blank=True)
link|improve this answer
feedback

You could create a pre-save signal:

http://docs.djangoproject.com/en/dev/ref/signals/#django.db.models.signals.pre_save

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.