moviewyrm/bookwyrm/templates/user_shelves.html
2020-09-29 14:11:55 -07:00

15 lines
320 B
HTML

{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
{% include 'user_header.html' with user=user %}
{% for shelf in shelves %}
<div class="block">
<h2 class="title">{{ shelf.name }}</h2>
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
{% endfor %}
{% endblock %}