moviewyrm/bookwyrm/templates/tag.html
2020-09-29 20:44:33 -07:00

13 lines
239 B
HTML

{% 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 %}
</div>
{% endblock %}