diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-03-31 18:45:10 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-03-31 18:45:10 +0200 |
| commit | 09264888638ba506b33f6fc08350950b4629df0a (patch) | |
| tree | 26aadf9f3582344e271826f437d5c6201a85b81f /archaeological_operations/models.py | |
| parent | ed72a1cbbdd35f0997bec4d2cf25d4a012ea79db (diff) | |
| download | Ishtar-09264888638ba506b33f6fc08350950b4629df0a.tar.bz2 Ishtar-09264888638ba506b33f6fc08350950b4629df0a.zip | |
✨ sites - datings: manage datings (forms, sheet)
Diffstat (limited to 'archaeological_operations/models.py')
| -rw-r--r-- | archaeological_operations/models.py | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/archaeological_operations/models.py b/archaeological_operations/models.py index 62c0bcf93..7bf654639 100644 --- a/archaeological_operations/models.py +++ b/archaeological_operations/models.py @@ -920,6 +920,16 @@ class ArchaeologicalSite( if can_edit_site and not is_locked: actions += [ ( + reverse("site-dating-add", args=[self.pk]), + _("Add dating"), + "fa fa-plus", + _("dating"), + "", + True, + ), + ] + actions += [ + ( reverse("site-operation-relations-modify", args=[self.pk, window_id]), _("Modify site-operation relations"), "fa fa-retweet", |
