mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-05 16:39:42 +00:00
10 lines
278 B
HTML
10 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 %}
|