Compensation action code list

* integrates action code list to NewActionForm
This commit is contained in:
mipel
2021-08-24 09:31:12 +02:00
parent 49f7f3db53
commit de925c8cc6
4 changed files with 37 additions and 11 deletions

View File

@@ -41,7 +41,7 @@ class KonovaCode(models.Model):
def __str__(self):
if self.is_leaf and self.parent:
return "{} | {}".format(self.parent.long_name, self.long_name)
return "{} > {}".format(self.parent.long_name, self.long_name)
return self.long_name