moviewyrm/bookwyrm/templates/tag.html

13 lines
239 B
HTML
Raw Normal View History

2020-02-21 17:10:27 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="block">
<h2 class="title">Books tagged "{{ tag.name }}"</h2>
{% include 'snippets/book_tiles.html' with books=books.all %}
2020-02-21 17:10:27 +00:00
</div>
2020-02-21 17:10:27 +00:00
{% endblock %}