summaryrefslogtreecommitdiff
path: root/ishtar_common
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common')
-rw-r--r--ishtar_common/models.py4
-rw-r--r--ishtar_common/models_common.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/models.py b/ishtar_common/models.py
index 00c17db14..2be69ff69 100644
--- a/ishtar_common/models.py
+++ b/ishtar_common/models.py
@@ -2634,7 +2634,7 @@ class Area(HierarchicalType, DocumentItem, MainItem):
label = [str(self)]
if self.parent and self.parent.pk != self.pk:
label.append(self.parent.full_label)
- return " / ".join(label)
+ return " > ".join(label)
def _get_base_image_path(self):
return self.SLUG
@@ -5484,7 +5484,7 @@ class Document(
while source_type:
source_types.append(str(source_type))
source_type = source_type.parent
- return " / ".join(reversed(source_types))
+ return " > ".join(reversed(source_types))
def public_representation(self):
site = Site.objects.get_current()
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: