moviewyrm/bookwyrm/templates/tag.html

15 lines
339 B
HTML
Raw Normal View History

2020-02-21 17:10:27 +00:00
{% extends 'layout.html' %}
2021-02-28 02:48:10 +00:00
{% load i18n %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
{% block title %}{{ tag.name }}{% endblock %}
{% block content %}
<div class="block">
<h1 class="title">{% blocktrans %}Books tagged "{{ tag.name }}"{% endblocktrans %}</h1>
{% include 'snippets/book_tiles.html' with books=books.all %}
2020-02-21 17:10:27 +00:00
</div>
{% endblock %}