bookwyrm/fedireads/templates/shelf.html
2020-02-21 16:40:49 -08:00

11 lines
278 B
HTML

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