moviewyrm/bookwyrm/templates/shelf.html

11 lines
278 B
HTML
Raw Normal View History

2020-02-22 00:03:05 +00:00
{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
2020-02-22 00:40:49 +00:00
<h2>{% 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 %}