add help_text to slow_down_factor
This commit is contained in:
parent
db0382689e
commit
8bfc591331
1 changed files with 2 additions and 1 deletions
|
@ -116,7 +116,8 @@ class Area(SpaceGeometryMixin, SpecificLocation, models.Model):
|
||||||
"""
|
"""
|
||||||
geometry = GeometryField('polygon')
|
geometry = GeometryField('polygon')
|
||||||
slow_down_factor = models.DecimalField(_('slow down factor'), max_digits=6, decimal_places=2, default=1,
|
slow_down_factor = models.DecimalField(_('slow down factor'), max_digits=6, decimal_places=2, default=1,
|
||||||
validators=[MinValueValidator(Decimal('0.01'))])
|
validators=[MinValueValidator(Decimal('0.01'))],
|
||||||
|
help_text=_('values of overlapping areas get multiplied!'))
|
||||||
|
|
||||||
class Meta:
|
class Meta:
|
||||||
verbose_name = _('Area')
|
verbose_name = _('Area')
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue