Fabian Braun

Results 462 comments of Fabian Braun

I fear versioning might interfere with the proper update of the `languages` field. The information is clearly redundant and was a performance compromise in v3. Have you checked if `list(page_obj.page_content_cache.keys())`...

Something like this for the `Page` model - the `languages` field would be removed then: ``` def get_languages(self): self._get_page_content_cache(None, False, False) return list(self.page_content_cache.keys()) @property def languages(self): return ",".join(self.get_languages()) ```