moviewyrm/bookwyrm/templates/user_shelves.html

26 lines
625 B
HTML
Raw Normal View History

2020-03-17 00:29:37 +00:00
{% extends 'layout.html' %}
{% load fr_display %}
{% block content %}
{% include 'user_header.html' with user=user %}
2020-09-29 21:11:55 +00:00
<div class="block">
2020-10-30 21:01:43 +00:00
<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>
2020-09-29 21:11:55 +00:00
<h2 class="title">{{ shelf.name }}</h2>
2020-10-30 21:01:43 +00:00
</div>
{% for shelf in shelves %}
<div class="block">
2020-03-17 00:29:37 +00:00
{% include 'snippets/shelf.html' with shelf=shelf ratings=ratings %}
</div>
{% endfor %}
{% endblock %}