From bc1e5abd91aeeb9be6c318d8d9c59602ce7df26e Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Mon, 1 Dec 2025 15:38:11 +0100 Subject: 🐛 use > instead of / for some hierarchical items (refs #6513) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - container localisations - geographic area - documents types - inline help for hierarchical types --- archaeological_warehouse/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'archaeological_warehouse/models.py') 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 -- cgit v1.2.3