From 45421bf385ba8219a470e84abbf64151010a2044 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 --- ishtar_common/models_common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ishtar_common/models_common.py') diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index 75aa6c986..c80e2f34c 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -346,7 +346,7 @@ class GeneralType(Cached, models.Model): c_item = c_item.parent parents.reverse() parents.append(item.label) - item.label = " / ".join(parents) + item.label = " > ".join(parents) if not item.comment: continue if c_rank > item.rank: -- cgit v1.2.3