diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 12:03:22 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-06-22 12:03:22 +0200 |
commit | 43ed9eb077e0d24b4ff0906fce1d147887946887 (patch) | |
tree | de04ec4ec0c24b2173ded2259a47870286533f6b /archaeological_operations/models.py | |
parent | be2f9250a3684d8a7b42cdedcb97b88689146583 (diff) | |
parent | f5278167603056e612b9228936d68d1ee30388ae (diff) | |
download | Ishtar-43ed9eb077e0d24b4ff0906fce1d147887946887.tar.bz2 Ishtar-43ed9eb077e0d24b4ff0906fce1d147887946887.zip |
Merge branch 'master-gis'
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 0ae042bf0..3a7586e59 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -231,6 +231,9 @@ class Operation(BaseHistorizedItem, OwnPerms, ValueGetter, ShortMenuItem, _(u"Record quality"), max_length=2, null=True, blank=True, choices=QUALITY) abstract = models.TextField(_(u"Abstract"), null=True, blank=True) + point = models.PointField(_(u"Point"), blank=True, null=True) + multi_polygon = models.MultiPolygonField(_(u"Multi polygon"), blank=True, + null=True) history = HistoricalRecords() class Meta: |