From f207add7ac2b9fd61b9cb80f6f13e91fbd2b5be5 Mon Sep 17 00:00:00 2001 From: why-not-try-calmer Date: Fri, 8 Sep 2023 10:55:08 +0200 Subject: [PATCH] escaping in template --- docker-app/qfieldcloud/core/models.py | 5 ----- 1 file changed, 5 deletions(-) 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]