diff options
Diffstat (limited to 'chimere/models.py')
| -rw-r--r-- | chimere/models.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/chimere/models.py b/chimere/models.py index e663975..f27562b 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -1535,6 +1535,12 @@ class Area(models.Model, SimpleArea): null=True) restrict_to_extent = models.BooleanField(_(u"Restrict to the area extent"), default=False) + allow_point_edition = models.BooleanField(_(u"Allow point edition"), + default=True) + allow_route_edition = models.BooleanField(_(u"Allow route edition"), + default=True) + allow_polygon_edition = models.BooleanField(_(u"Allow polygon edition"), + default=True) objects = models.GeoManager() def __unicode__(self): |
