diff options
Diffstat (limited to 'archaeological_warehouse/models.py')
| -rw-r--r-- | archaeological_warehouse/models.py | 2 |
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 |
