summaryrefslogtreecommitdiff
path: root/archaeological_warehouse/models.py
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:12:52 +0100
commit45421bf385ba8219a470e84abbf64151010a2044 (patch)
tree4215891dc34e63273f85799e74376bc855068528 /archaeological_warehouse/models.py
parent303ce6d4d2f816f3f9e4eeb426c1ee3b2db2895c (diff)
downloadIshtar-45421bf385ba8219a470e84abbf64151010a2044.tar.bz2
Ishtar-45421bf385ba8219a470e84abbf64151010a2044.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/models.py')
-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 61ba4845e..43ff718a8 100644
--- a/archaeological_warehouse/models.py
+++ b/archaeological_warehouse/models.py
@@ -1342,7 +1342,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