summaryrefslogtreecommitdiff
path: root/ishtar_common/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/models.py')
-rw-r--r--ishtar_common/models.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 57283e8f4..f802b434c 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -1671,7 +1671,10 @@ post_delete.connect(post_save_cache, sender=SpatialReferenceSystem)
class GeoItem(models.Model):
- GEO_SOURCE = ('T', _(u"Town")), ('P', _(u"Precise"))
+ GEO_SOURCE = (
+ ('T', _(u"Town")), ('P', _(u"Precise")),
+ ('M', _("Polygon"))
+ )
# gis
x = models.FloatField(_(u'X'), blank=True, null=True)