diff options
Diffstat (limited to 'chimere/models.py')
| -rw-r--r-- | chimere/models.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/chimere/models.py b/chimere/models.py index a1d96d0..b791a8b 100644 --- a/chimere/models.py +++ b/chimere/models.py @@ -1381,6 +1381,8 @@ class Map(models.Model, SimpleArea): u"available")) external_css = models.URLField(_(u"Link to an external CSS"), blank=True, null=True) + cluster = models.BooleanField(u"Clustering map (weight of items are added)", + default=False) public_read = models.BooleanField(_(u"Public can read the map")) public_propose = models.BooleanField(_(u"Public can propose item to the map")) public_write = models.BooleanField(_(u"Public can write without moderation to the map")) |
