Handle mother

This commit is contained in:
PCoder 2021-11-29 08:10:05 +05:30
parent a4401d871c
commit 9bda626544
1 changed files with 1 additions and 1 deletions

View File

@ -485,7 +485,7 @@ class Keyword(models.Model):
keyword = models.TextField(blank=True, null=True)
def __str__(self):
return '%s > %s' % (self.mother, self.keyword) if self.mother else self.keyword
return '%s > %s' % (self.mother, self.keyword) if self.mother.keyword != '->' and self.mother != '->' else self.keyword
class ResourceKeyword(models.Model):