diff options
author | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-10-12 12:27:13 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2022-12-12 12:23:18 +0100 |
commit | af5fa073a5cf6ecd05dcc46890447930f4d2f328 (patch) | |
tree | 76c1b80d2286509fc3c4474e53955d417fbcfd69 /archaeological_context_records/models.py | |
parent | 5bc393a2138befe7ad7e17565979ae571d632f45 (diff) | |
download | Ishtar-af5fa073a5cf6ecd05dcc46890447930f4d2f328.tar.bz2 Ishtar-af5fa073a5cf6ecd05dcc46890447930f4d2f328.zip |
Geo: quick add geo action for context records, sites and finds
Diffstat (limited to 'archaeological_context_records/models.py')
-rw-r--r-- | archaeological_context_records/models.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/archaeological_context_records/models.py b/archaeological_context_records/models.py index d4341e6cb..08e94af85 100644 --- a/archaeological_context_records/models.py +++ b/archaeological_context_records/models.py @@ -1092,6 +1092,9 @@ class ContextRecord( actions = super(ContextRecord, self).get_extra_actions(request) # is_locked = hasattr(self, "is_locked") and self.is_locked(request.user) + can_add_geo = self.can_do(request, "add_geovectordata") + if can_add_geo: + actions.append(self.get_add_geo_action()) can_create_find = self.can_do(request, "add_find") if can_create_find: actions += [ |