summaryrefslogtreecommitdiff
path: root/archaeological_warehouse
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 15:38:11 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2025-12-01 18:13:42 +0100
commitbc1e5abd91aeeb9be6c318d8d9c59602ce7df26e (patch)
tree715bb9464ed8072329ceb174bde662568714f84e /archaeological_warehouse
parent9de45f70dbe6821e10ecb90f0407d8f25e2745a5 (diff)
downloadIshtar-bc1e5abd91aeeb9be6c318d8d9c59602ce7df26e.tar.bz2
Ishtar-bc1e5abd91aeeb9be6c318d8d9c59602ce7df26e.zip
🐛 use > instead of / for some hierarchical items (refs #6513)
- container localisations - geographic area - documents types - inline help for hierarchical types
Diffstat (limited to 'archaeological_warehouse')
-rw-r--r--archaeological_warehouse/models.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/archaeological_warehouse/models.py b/archaeological_warehouse/models.py
index 4a5294632..4ce50e401 100644
--- a/archaeological_warehouse/models.py
+++ b/archaeological_warehouse/models.py
@@ -1344,7 +1344,7 @@ class Container(
def generate_full_location(self):
full_location = [location.short_label for location in self.get_localisations()]
full_location.append(self.short_label)
- return " / ".join(full_location)
+ return " > ".join(full_location)
def _generate_cached_weight(self):
return self.weight if self.weight else self.calculated_weight