bookwyrm-mastodon/fedireads/templates/shelf.html

11 lines
278 B
HTML
Raw Normal View History

2020-02-21 19:03:05 -05:00
{% extends 'layout.html' %}
{% block content %}
<div id="content">
<div>
2020-02-21 19:40:49 -05:00
<h2>{% include 'snippets/username.html' with user=user %} > {{ shelf.name }}</h2>
2020-02-21 19:03:05 -05:00
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
</div>
{% endblock %}