From f51d611efa2aa173028b2300729a6aabdf5aee08 Mon Sep 17 00:00:00 2001 From: kthoden Date: Thu, 27 Feb 2020 14:16:59 +0100 Subject: [PATCH] Escape tags in part --- .../templates/publications/publication/publication_base.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eoapublications/templates/publications/publication/publication_base.html b/eoapublications/templates/publications/publication/publication_base.html index 67882b8..654c70b 100644 --- a/eoapublications/templates/publications/publication/publication_base.html +++ b/eoapublications/templates/publications/publication/publication_base.html @@ -159,7 +159,7 @@

Translated by

{% if Listofchapters %} {% for Chapter in Listofchapters %} - {% if Chapter.Chapterpart %}

{{ Chapter.Chapterpart }}

{% endif %} + {% if Chapter.Chapterpart %}

{{ Chapter.Chapterpart|safe }}

{% endif %}

{{ Chapter.Number }} {{ Chapter.Title|safe }} {% if Chapter.Chapterauthor1 %}
{{ Chapter.Chapterauthor1 }}{% endif %}{% if Chapter.Chapterauthor2 %}, {{ Chapter.Chapterauthor2 }}{% endif %}{% if Chapter.Chapterauthor3 %}, {{ Chapter.Chapterauthor3 }}{% endif %}{% if Chapter.Chapterauthor4 %}, {{ Chapter.Chapterauthor4 }}{% endif %}{% if Chapter.Chapterauthor5 %}, {{ Chapter.Chapterauthor5 }}{% endif %}

{% endfor %}