diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-13 16:25:20 +0100 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-03-13 16:25:20 +0100 |
commit | f0efbc44b9dfbd648c17b4d82937e725431cdf5b (patch) | |
tree | be82ba25f71fb96e3ab5a72bb65b7596629086f0 /archaeological_operations/models.py | |
parent | 749a5fa0444d66c8a3656edae9f0e6b6f12b9870 (diff) | |
download | Ishtar-f0efbc44b9dfbd648c17b4d82937e725431cdf5b.tar.bz2 Ishtar-f0efbc44b9dfbd648c17b4d82937e725431cdf5b.zip |
Operation: add a location field (refs #3508)
Diffstat (limited to 'archaeological_operations/models.py')
-rw-r--r-- | archaeological_operations/models.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 57338f81c..06a5fc0ff 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -331,6 +331,7 @@ class Operation(ClosedItem, BaseHistorizedItem, ImageModel, OwnPerms, operator_reference = models.CharField( _(u"Operator reference"), max_length=20, null=True, blank=True) common_name = models.TextField(_(u"Generic name"), null=True, blank=True) + address = models.TextField(_(u"Address / Locality"), null=True, blank=True) comment = models.TextField(_(u"General comment"), null=True, blank=True) scientific_documentation_comment = models.TextField( _(u"Comment about scientific documentation"), null=True, blank=True) |