diff options
-rw-r--r-- | CHANGES.md | 2 | ||||
-rw-r--r-- | ishtar_common/models_common.py | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/CHANGES.md b/CHANGES.md index a31cdae20..71f1e6ed1 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,8 @@ date: 2022-11-21 ### Bug fixes ### - Fix redirect URL after logout +- Fix choice display - non relevant translation is deactivated + v4.0.28 - 2022-11-18 -------------------- diff --git a/ishtar_common/models_common.py b/ishtar_common/models_common.py index dc35cade2..54217ae4f 100644 --- a/ishtar_common/models_common.py +++ b/ishtar_common/models_common.py @@ -458,7 +458,7 @@ class GeneralType(Cached, models.Model): if default: try: default = cls.objects.get(txt_idx=default) - yield (default.pk, _(str(default))) + yield (default.pk, str(default)) except cls.DoesNotExist: pass items = cls.objects.filter(**dct) @@ -566,7 +566,7 @@ class GeneralType(Cached, models.Model): p += cls.PREFIX_EMPTY else: p += cls.PREFIX - lst.append((child[0], SafeText(p + str(_(child[1]))))) + lst.append((child[0], SafeText(p + child[1]))) clast_of = last_of[:] clast_of.append(idx + 1 == total) if instances: |