moviewyrm/bookwyrm/templates/tag.html
2020-11-09 12:06:44 -08:00

12 lines
239 B
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
<div class="block">
<h1 class="title">Books tagged "{{ tag.name }}"</h1>
{% include 'snippets/book_tiles.html' with books=books.all %}
</div>
{% endblock %}