2020-02-22 00:03:05 +00:00
|
|
|
{% extends 'layout.html' %}
|
|
|
|
{% block content %}
|
|
|
|
|
2020-09-30 02:48:10 +00:00
|
|
|
<div class="block">
|
|
|
|
<nav class="breadcrumb has-succeeds-separator" aria-label="breadcrumbs">
|
|
|
|
<ul>
|
|
|
|
<li><a href="/user/{{ user.username }}">{% include 'snippets/username.html' with user=user %}</a></li>
|
|
|
|
<li><a href="/user/{{ user.username }}/shelves">Shelves</a></li>
|
|
|
|
<li class="is-active"><a href="#" aria-current="page">{{ shelf.name }}</a></li>
|
|
|
|
</ul>
|
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
|
2020-09-29 21:11:55 +00:00
|
|
|
<div class="block">
|
2020-02-22 00:03:05 +00:00
|
|
|
<div>
|
2020-09-30 02:48:10 +00:00
|
|
|
<h2 class="title">{{ shelf.name }}</h2>
|
2020-02-22 00:03:05 +00:00
|
|
|
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|