diff options
-rw-r--r-- | CHANGES.md | 11 | ||||
-rw-r--r-- | ishtar_common/views.py | 2 |
2 files changed, 12 insertions, 1 deletions
diff --git a/CHANGES.md b/CHANGES.md index 326bc5812..e5ff39bb4 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,17 @@ date: 2022-07-18 Ishtar changelog ================ +v4.0.10 - 2022-07-XXXXXXXXXXX +-------------------- + +### Features ### + +- Admin - Custom fields: exports and imports CSV, json + +### Bug fix ### + +- Sheet document - fix permalink content + v4.0.9 - 2022-07-21 ------------------- diff --git a/ishtar_common/views.py b/ishtar_common/views.py index c706a4b45..6bfe8c0a5 100644 --- a/ishtar_common/views.py +++ b/ishtar_common/views.py @@ -2699,7 +2699,7 @@ class DisplayItemView(IshtarMixin, TemplateView): pk = kwargs.get("pk") item_type = kwargs.get("item_type") if item_type in self.SHOW_VIEWS: - data["view_content"] = self.SHOW_VIEWS[item_type](self.request, pk).content + data["view_content"] = self.SHOW_VIEWS[item_type](self.request, pk).content.decode("utf-8") if item_type in self.ASSOCIATED_MODEL and hasattr( self.ASSOCIATED_MODEL[item_type], "extra_meta" ): |