From 0dc56b4d4622e08b88ba9189501de265d1e6ae08 Mon Sep 17 00:00:00 2001 From: Jan Szejko Date: Wed, 5 Jul 2017 17:25:45 +0200 Subject: [PATCH] fix invalid boxes for pdcounter authors --- .../templates/catalogue/search_multiple_hits.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/catalogue/templates/catalogue/search_multiple_hits.html b/src/catalogue/templates/catalogue/search_multiple_hits.html index 28e3985b9..5ee0f415d 100644 --- a/src/catalogue/templates/catalogue/search_multiple_hits.html +++ b/src/catalogue/templates/catalogue/search_multiple_hits.html @@ -21,7 +21,7 @@

{% trans "Authors" %}:

{% for tag in tags.author %} - {% ssi_include "catalogue_tag_box" pk=tag.pk %} + {% include "catalogue/tag_box.html" %} {% endfor %} @@ -31,7 +31,7 @@

{% trans "Kinds" %}:

{% for tag in tags.kind %} - {% ssi_include "catalogue_tag_box" pk=tag.pk %} + {% include "catalogue/tag_box.html" %} {% endfor %} @@ -41,7 +41,7 @@

{% trans "Genres" %}:

{% for tag in tags.genre %} - {% ssi_include "catalogue_tag_box" pk=tag.pk %} + {% include "catalogue/tag_box.html" %} {% endfor %} @@ -51,7 +51,7 @@

{% trans "Epochs" %}:

{% for tag in tags.epoch %} - {% ssi_include "catalogue_tag_box" pk=tag.pk %} + {% include "catalogue/tag_box.html" %} {% endfor %} -- 2.20.1