diff options
| 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 |
| commit | 45421bf385ba8219a470e84abbf64151010a2044 (patch) | |
| tree | 4215891dc34e63273f85799e74376bc855068528 /ishtar_common/models_common.py | |
| parent | 303ce6d4d2f816f3f9e4eeb426c1ee3b2db2895c (diff) | |
| download | Ishtar-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 'ishtar_common/models_common.py')
| -rw-r--r-- | ishtar_common/models_common.py | 2 |
1 files changed, 1 insertions, 1 deletions
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: |
