forked from mirrors/bookwyrm
139 lines
4.6 KiB
HTML
139 lines
4.6 KiB
HTML
{% extends 'user/user_layout.html' %}
|
|
{% load bookwyrm_tags %}
|
|
{% load humanize %}
|
|
{% load i18n %}
|
|
|
|
{% block title %}
|
|
{% include 'user/books_header.html' %}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<header class="columns">
|
|
<h1 class="title">
|
|
{% include 'user/books_header.html' %}
|
|
</h1>
|
|
</header>
|
|
{% endblock %}
|
|
|
|
{% block panel %}
|
|
<div class="block columns">
|
|
<div class="column">
|
|
<div class="tabs">
|
|
<ul>
|
|
{% for shelf_tab in shelves %}
|
|
<li class="{% if shelf_tab.identifier == shelf.identifier %}is-active{% endif %}">
|
|
<a href="{{ shelf_tab.local_path }}"{% if shelf_tab.identifier == shelf.identifier %} aria-current="page"{% endif %}>{% if shelf_tab.identifier == 'to-read' %}{% trans "To Read" %}{% elif shelf_tab.identifier == 'reading' %}{% trans "Currently Reading" %}{% elif shelf_tab.identifier == 'read' %}{% trans "Read" %}{% else %}{{ shelf_tab.name }}{% endif %}</a>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
{% if is_self %}
|
|
<div class="column is-narrow">
|
|
{% trans "Create shelf" as button_text %}
|
|
{% include 'snippets/toggle/open_button.html' with text=button_text icon="plus" controls_text="create-shelf-form" focus="create-shelf-form-header" %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="block">
|
|
{% include 'user/create_shelf_form.html' with controls_text='create-shelf-form' %}
|
|
</div>
|
|
|
|
<div class="block columns is-mobile">
|
|
<div class="column">
|
|
<h2 class="title is-3">
|
|
{{ shelf.name }}
|
|
<span class="subtitle">
|
|
{% include 'snippets/privacy-icons.html' with item=shelf %}
|
|
</span>
|
|
</h2>
|
|
</div>
|
|
{% if is_self %}
|
|
<div class="column is-narrow">
|
|
{% trans "Edit shelf" as button_text %}
|
|
{% include 'snippets/toggle/open_button.html' with text=button_text icon="pencil" controls_text="edit-shelf-form" focus="edit-shelf-form-header" %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<div class="block">
|
|
{% include 'user/edit_shelf_form.html' with controls_text="edit-shelf-form" %}
|
|
</div>
|
|
|
|
<div class="block">
|
|
<div>
|
|
{% if books|length > 0 %}
|
|
<div class="scroll-x">
|
|
<table class="table is-striped is-fullwidth">
|
|
|
|
<tr class="book-preview">
|
|
<th>{% trans "Cover" %}</th>
|
|
<th>{% trans "Title" %}</th>
|
|
<th>{% trans "Author" %}</th>
|
|
<th>{% trans "Shelved" %}</th>
|
|
<th>{% trans "Started" %}</th>
|
|
<th>{% trans "Finished" %}</th>
|
|
{% if ratings %}<th>{% trans "Rating" %}</th>{% endif %}
|
|
{% if shelf.user == request.user %}
|
|
<th aria-hidden="true"></th>
|
|
{% endif %}
|
|
</tr>
|
|
{% for book in books %}
|
|
{% with book=book.book %}
|
|
<tr class="book-preview">
|
|
<td>
|
|
<a href="{{ book.local_path }}">{% include 'snippets/book_cover.html' with book=book size="small" %}</a>
|
|
</td>
|
|
<td>
|
|
<a href="{{ book.local_path }}">{{ book.title }}</a>
|
|
</td>
|
|
<td>
|
|
{% include 'snippets/authors.html' %}
|
|
</td>
|
|
<td>
|
|
{{ book.created_date | naturalday }}
|
|
</td>
|
|
{% latest_read_through book user as read_through %}
|
|
<td>
|
|
{{ read_through.start_date | naturalday |default_if_none:""}}
|
|
</td>
|
|
<td>
|
|
{{ read_through.finish_date | naturalday |default_if_none:""}}
|
|
</td>
|
|
{% if ratings %}
|
|
<td>
|
|
{% include 'snippets/stars.html' with rating=ratings|dict_key:book.id %}
|
|
</td>
|
|
{% endif %}
|
|
{% if shelf.user == request.user %}
|
|
<td>
|
|
{% include 'snippets/shelf_selector.html' with current=shelf %}
|
|
</td>
|
|
{% endif %}
|
|
</tr>
|
|
{% endwith %}
|
|
{% endfor %}
|
|
</table>
|
|
</div>
|
|
{% else %}
|
|
<p>{% trans "This shelf is empty." %}</p>
|
|
{% if shelf.editable %}
|
|
<form name="delete-shelf" action="/delete-shelf/{{ shelf.id }}" method="post">
|
|
{% csrf_token %}
|
|
<input type="hidden" name="user" value="{{ request.user.id }}">
|
|
<button class="button is-danger is-light" type="submit">
|
|
{% trans "Delete shelf" %}
|
|
</button>
|
|
</form>
|
|
{% endif %}
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
</div>
|
|
<div>
|
|
{% include 'snippets/pagination.html' with page=books path=request.path %}
|
|
</div>
|
|
{% endblock %}
|