diff --git a/the_works/templates/views/text.html b/the_works/templates/views/text.html index 5bb6e8f..67061e6 100644 --- a/the_works/templates/views/text.html +++ b/the_works/templates/views/text.html @@ -1,5 +1,4 @@ {% extends 'base.html' %} -{% set SPLIT_CHARACTER = ", " %} {% block title %}Texte{% endblock title %} @@ -51,7 +50,7 @@ {{ text["Reihe"] }} {{ text["Textform"] }} {{ text["Sprache"] }} - {{ text["Genre_list"] | join(SPLIT_CHARACTER) }} + {{ text["Genre_list"] | join(", ") }} diff --git a/the_works/templates/views/werk.html b/the_works/templates/views/werk.html index 5ea6b89..b04f51d 100644 --- a/the_works/templates/views/werk.html +++ b/the_works/templates/views/werk.html @@ -1,5 +1,4 @@ {% extends 'base.html' %} -{% set SPLIT_CHARACTER = ", " %} {% block title %}Werke{% endblock title %} @@ -51,7 +50,7 @@ {{ werk["Reihe"] }} {{ werk["Verlag"] }} {{ werk["Werksform"] }} - {{ werk["Genre_list"] | join(SPLIT_CHARACTER) }} + {{ werk["Genre_list"] | join(", ") }}