forked from mirrors/bookwyrm
11 lines
263 B
HTML
11 lines
263 B
HTML
|
{% extends 'layout.html' %}
|
||
|
{% block content %}
|
||
|
|
||
|
<div id="content">
|
||
|
<div>
|
||
|
<h2>{% include 'snippets/username.html' %} > {{ shelf.name }}</h2>
|
||
|
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
|
||
|
</div>
|
||
|
</div>
|
||
|
{% endblock %}
|