X-Git-Url: https://git.mdrn.pl/wolnelektury.git/blobdiff_plain/6034428b14b634d1801e2d8279b1a0863b918a48..ace92112e99e3f48466e4d230087c3ab40187450:/src/catalogue/templatetags/catalogue_tags.py diff --git a/src/catalogue/templatetags/catalogue_tags.py b/src/catalogue/templatetags/catalogue_tags.py index ef0ea5dcc..2670e58db 100644 --- a/src/catalogue/templatetags/catalogue_tags.py +++ b/src/catalogue/templatetags/catalogue_tags.py @@ -44,8 +44,8 @@ def html_title_from_tags(tags): if len(tags) < 2: return title_from_tags(tags) template = Template("{{ category }}: {{ tag.name }}") - return capfirst(",
".join( - template.render(Context({'tag': tag, 'category': _(tag.category)})) for tag in tags)) + return mark_safe(capfirst(",
".join( + template.render(Context({'tag': tag, 'category': _(tag.category)})) for tag in tags))) def simple_title(tags):