moviewyrm/bookwyrm/templates/tag.html

21 lines
620 B
HTML
Raw Normal View History

2020-02-21 17:10:27 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
2020-04-04 20:12:15 +00:00
<div class="content-container">
<h2>Books tagged "{{ tag.name }}"</h2>
<div class="book-grid row wrap shrink">
2020-02-21 17:10:27 +00:00
{% for book in books.all %}
2020-04-04 20:12:15 +00:00
<div class="cover-container">
2020-05-04 01:07:06 +00:00
<a href="/book/{{ book.id }}">
2020-04-04 20:12:15 +00:00
{% include 'snippets/book_cover.html' with book=book %}
</a>
{% include 'snippets/rate_action.html' with user=request.user book=book %}
{% include 'snippets/shelve_button.html' with book=book %}
2020-02-21 17:10:27 +00:00
</div>
{% endfor %}
</div>
</div>
{% endblock %}