moviewyrm/bookwyrm/templates/shelf.html

11 lines
293 B
HTML
Raw Normal View History

2020-02-22 00:03:05 +00:00
{% extends 'layout.html' %}
{% block content %}
2020-09-29 21:11:55 +00:00
<div class="block">
2020-02-22 00:03:05 +00:00
<div>
2020-09-29 21:11:55 +00:00
<h2 class="title">{% include 'snippets/username.html' with user=user %} > {{ shelf.name }}</h2>
2020-02-22 00:03:05 +00:00
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
</div>
{% endblock %}