diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-03-31 18:45:10 +0200 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2026-04-02 13:30:50 +0200 |
| commit | b78f0d10fd202ed9a1c4d3e508390d4329032b29 (patch) | |
| tree | 33b3651059063fe6ac2db9987b333d017236d994 /archaeological_operations/models.py | |
| parent | e7bdab832a7e886d13a3778d97234c64fcac68bf (diff) | |
| download | Ishtar-b78f0d10fd202ed9a1c4d3e508390d4329032b29.tar.bz2 Ishtar-b78f0d10fd202ed9a1c4d3e508390d4329032b29.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", |
