| 1234567891011121314151617181920212223242526 |
- from django import forms
- from django.contrib.postgres.forms import SimpleArrayField
- from django.utils.translation import gettext_lazy as _
- from ..utils import parse_numeric_range
- __all__ = (
- 'NumericArrayField',
- )
- class NumericArrayField(SimpleArrayField):
- def clean(self, value):
- if value and not self.to_python(value):
- raise forms.ValidationError(
- _("Invalid list ({value}). Must be numeric and ranges must be in ascending order.").format(value=value)
- )
- return super().clean(value)
- def to_python(self, value):
- if not value:
- return []
- if isinstance(value, str):
- value = ','.join([str(n) for n in parse_numeric_range(value)])
- return super().to_python(value)
|