29 lines
840 B
Python
29 lines
840 B
Python
#!/usr/bin/env python
|
||
# -*- coding: utf-8 -*-
|
||
"""
|
||
openslides.utils.modelfields
|
||
~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
||
|
||
Modelfields for OpenSlides
|
||
|
||
:copyright: 2011–2013 by OpenSlides team, see AUTHORS.
|
||
:license: GNU GPL, see LICENSE for more details.
|
||
"""
|
||
|
||
from django.db import models
|
||
|
||
|
||
class MinMaxIntegerField(models.IntegerField):
|
||
"""
|
||
IntegerField with options to set a min- and a max-value.
|
||
"""
|
||
|
||
def __init__(self, min_value=None, max_value=None, *args, **kwargs):
|
||
self.min_value, self.max_value = min_value, max_value
|
||
super(MinMaxIntegerField, self).__init__(*args, **kwargs)
|
||
|
||
def formfield(self, **kwargs):
|
||
defaults = {'min_value': self.min_value, 'max_value': self.max_value}
|
||
defaults.update(kwargs)
|
||
return super(MinMaxIntegerField, self).formfield(**defaults)
|