diff --git a/docker-app/qfieldcloud/core/models.py b/docker-app/qfieldcloud/core/models.py index 03458ed1f..20b5ae6ae 100644 --- a/docker-app/qfieldcloud/core/models.py +++ b/docker-app/qfieldcloud/core/models.py @@ -1,4 +1,3 @@ -import html import logging import os import secrets @@ -1651,10 +1650,6 @@ class Status(models.TextChoices): max_length=64, default="", blank=True, db_index=True ) - @property - def escaped_output(self) -> str: - return html.escape(self.output) - @property def short_id(self) -> str: return str(self.id)[0:8]