tab through user shelves

This commit is contained in:
Mouse Reeve
2020-10-30 14:01:43 -07:00
parent f35ed0e555
commit eece662ec1
4 changed files with 36 additions and 21 deletions

View File

@ -3,9 +3,20 @@
{% block content %}
{% include 'user_header.html' with user=user %}
<div class="block">
<div class="tabs">
<ul>
{% for shelf in shelves %}
<li class="{% if true %}is-active{% endif %}">
<a href="/user/{{ user | username }}/shelves/{{ shelf.identifier }}">{{ shelf.name }}</a>
</li>
{% endfor %}
</ul>
<h2 class="title">{{ shelf.name }}</h2>
</div>
{% for shelf in shelves %}
<div class="block">
<h2 class="title">{{ shelf.name }}</h2>
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
{% endfor %}