remove 'a' from allowed html tags

This commit is contained in:
Liam Brydon
2025-11-06 10:33:22 +13:00
parent 4524b8fdf3
commit 2194b097ae

View File

@ -92,7 +92,7 @@ TEMPLATES = [
}, },
] ]
ALLOWED_HTML_TAGS = {'b', 'i', 'u', 'a', 'br', 'em', 'mark', 'p', 's', 'strong'} ALLOWED_HTML_TAGS = {'b', 'i', 'u', 'br', 'em', 'mark', 'p', 's', 'strong'}
WSGI_APPLICATION = "envipath.wsgi.application" WSGI_APPLICATION = "envipath.wsgi.application"