<h2>{% trans "Information about the work" %}</h2>
- {% for tag in tags %}
+ {% for author in book.authors %}
<div class="white-box">
- <a style="display:block" href="{{ tag.get_absolute_url }}">
- {% ssi_include 'catalogue_tag_box' pk=tag.pk %}
+ <a style="display:block" href="{{ author.get_absolute_url }}">
+ {% ssi_include 'catalogue_tag_box' pk=author.pk %}
</a>
</div>
{% endfor %}
return render_to_response('catalogue/book_detail.html', {
'book': book,
- 'tags': book.tags.exclude(category__in=('set', 'theme')),
'book_children': book.children.all().order_by('parent_number', 'sort_key'),
'active_menu_item': 'books',
}, context_instance=RequestContext(request))