diff --git a/docs/config/storage.md b/docs/config/storage.md index aa233c92..2ccc1d71 100644 --- a/docs/config/storage.md +++ b/docs/config/storage.md @@ -46,6 +46,7 @@ STORAGES = { "secret_key": "yyy", "bucket_name": "umap-pictograms", "endpoint_url": "http://127.0.0.1:9000", + "default_acl": "public-read", }, }, "data": { @@ -65,6 +66,7 @@ STORAGES = { "secret_key": "yyy", "bucket_name": "umapstatics", "endpoint_url": "http://127.0.0.1:9000", + "default_acl": "public-read", }, }, } diff --git a/umap/templates/base.html b/umap/templates/base.html index e0a749d5..0a9dc62b 100644 --- a/umap/templates/base.html +++ b/umap/templates/base.html @@ -18,6 +18,7 @@ {# See https://evilmartians.com/chronicles/how-to-favicon-in-2021-six-files-that-fit-most-needs #} + {% autoescape off %} @@ -28,6 +29,7 @@ href="{% static 'umap/favicons/apple-touch-icon.png' %}"> + {% endautoescape %}
{% block header %} diff --git a/umap/templates/umap/components/alerts/alert.html b/umap/templates/umap/components/alerts/alert.html index cba4ae27..ea2dbc5d 100644 --- a/umap/templates/umap/components/alerts/alert.html +++ b/umap/templates/umap/components/alerts/alert.html @@ -1,8 +1,10 @@ {% load i18n static %} +{% autoescape off %} +{% endautoescape %}