moviewyrm/bookwyrm/templates/user_shelves.html

15 lines
320 B
HTML
Raw Normal View History

2020-03-17 00:29:37 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
{% include 'user_header.html' with user=user %}
{% for shelf in shelves %}
2020-09-29 21:11:55 +00:00
<div class="block">
<h2 class="title">{{ shelf.name }}</h2>
2020-03-17 00:29:37 +00:00
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
{% endfor %}
{% endblock %}