<h2>{% trans "Authors" %}:</h2>
{% for tag in tags.author %}
<a class="tag-box" href="{{ tag.get_absolute_url }}">
- {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+ {% include "catalogue/tag_box.html" %}
</a>
{% endfor %}
</div>
<h2>{% trans "Kinds" %}:</h2>
{% for tag in tags.kind %}
<a class="tag-box" href="{{ tag.get_absolute_url }}">
- {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+ {% include "catalogue/tag_box.html" %}
</a>
{% endfor %}
</div>
<h2>{% trans "Genres" %}:</h2>
{% for tag in tags.genre %}
<a class="tag-box" href="{{ tag.get_absolute_url }}">
- {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+ {% include "catalogue/tag_box.html" %}
</a>
{% endfor %}
</div>
<h2>{% trans "Epochs" %}:</h2>
{% for tag in tags.epoch %}
<a class="tag-box" href="{{ tag.get_absolute_url }}">
- {% ssi_include "catalogue_tag_box" pk=tag.pk %}
+ {% include "catalogue/tag_box.html" %}
</a>
{% endfor %}
</div>