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

11 lines
293 B
HTML

{% extends 'layout.html' %}
{% block content %}
<div class="block">
<div>
<h2 class="title">{% include 'snippets/username.html' with user=user %} > {{ shelf.name }}</h2>
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
</div>
{% endblock %}