From 8e409d1a384f5e8aac3ff25e8e8cd4a1cad97254 Mon Sep 17 00:00:00 2001 From: Sami Date: Tue, 12 Apr 2022 12:47:17 +0500 Subject: [PATCH] space changed too < in __str__ person --- app/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/models.py b/app/models.py index 052578d..22f7e7d 100644 --- a/app/models.py +++ b/app/models.py @@ -426,11 +426,11 @@ class Organisation(models.Model): if self.organisation_english: if self.organisation_2: name = f"{self.organisation_english} ({self.organisation_2})" - name = f"{self.country}-{self.organisation_english}-{self.organisation_2}-{self.organisation_3}-{self.acronym}" + name = f"{self.country} < {self.organisation_english} < {self.organisation_2} < {self.organisation_3} < {self.acronym}" else: name = f"{self.organisation_english}" - name = f"{self.country}-{self.organisation_english}-{self.organisation_2}-{self.organisation_3}-{self.acronym}" + name = f"{self.country} < {self.organisation_english} < {self.organisation_2} < {self.organisation_3} < {self.acronym}" else: