class Parameters(DateTimeBase):
SIMPLE = 1
MEDIUM = 2
VERY_CUT_UP = 3
COMPLEXITY_CHOICES = (
(SIMPLE, 'Simple roof'),
(MEDIUM, 'Medium difficulty'),
(VERY_CUT_UP, 'Very cut-up roof'),
)
complexity = models.IntegerField(choices=COMPLEXITY_CHOICES, default=SIMPLE)