2020-01-25 18:25:19 -05:00
|
|
|
{% extends 'layout.html' %}
|
2021-02-27 21:48:10 -05:00
|
|
|
{% load i18n %}
|
2020-12-12 21:25:04 -05:00
|
|
|
{% load bookwyrm_tags %}
|
2020-02-21 18:39:25 -05:00
|
|
|
|
2021-02-28 13:00:36 -05:00
|
|
|
{% block title %}{% trans "Updates" %}{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
2020-09-29 20:43:30 -04:00
|
|
|
<div class="columns">
|
2021-01-29 13:25:31 -05:00
|
|
|
{% if user.is_authenticated %}
|
2020-09-30 18:00:46 -04:00
|
|
|
<div class="column is-one-third">
|
2021-02-27 21:48:10 -05:00
|
|
|
<h2 class="title is-5">{% trans "Your books" %}</h2>
|
2020-10-02 18:06:42 -04:00
|
|
|
{% if not suggested_books %}
|
2021-02-27 21:48:10 -05:00
|
|
|
<p>{% trans "There are no books here right now! Try searching for a book to get started" %}</p>
|
2020-10-02 18:06:42 -04:00
|
|
|
{% else %}
|
2021-02-28 13:04:04 -05:00
|
|
|
<div class="tab-group">
|
2021-02-27 10:47:03 -05:00
|
|
|
<div class="tabs is-small">
|
|
|
|
<ul role="tablist">
|
|
|
|
{% for shelf in suggested_books %}
|
|
|
|
{% if shelf.books %}
|
|
|
|
{% with shelf_counter=forloop.counter %}
|
|
|
|
<li>
|
|
|
|
<p>
|
|
|
|
{{ shelf.name }}
|
|
|
|
</p>
|
|
|
|
<div class="tabs is-small is-toggle">
|
|
|
|
<ul>
|
|
|
|
{% for book in shelf.books %}
|
|
|
|
<li{% if shelf_counter == 1 and forloop.first %} class="is-active"{% endif %}>
|
2021-02-28 13:04:04 -05:00
|
|
|
<a href="#book-{{ book.id }}" id="tab-book-{{ book.id }}" role="tab" aria-label="{{ book.title }}" aria-selected="{% if shelf_counter == 1 and forloop.first %}true{% else %}false{% endif %}" aria-controls="book-{{ book.id }}">
|
2021-02-27 10:47:03 -05:00
|
|
|
{% include 'snippets/book_cover.html' with book=book size="medium" %}
|
|
|
|
</a>
|
|
|
|
</li>
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</li>
|
|
|
|
{% endwith %}
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
</div>
|
2020-11-06 23:36:52 -05:00
|
|
|
{% for shelf in suggested_books %}
|
|
|
|
{% with shelf_counter=forloop.counter %}
|
2021-02-27 10:47:03 -05:00
|
|
|
{% for book in shelf.books %}
|
2021-02-28 13:04:04 -05:00
|
|
|
<div class="suggested-tabs card" role="tabpanel" id="book-{{ book.id }}"{% if shelf_counter != 1 or not forloop.first %} hidden{% endif %} aria-labelledby="tab-book-{{ book.id }}">
|
2021-02-27 10:47:03 -05:00
|
|
|
<div class="card-header">
|
|
|
|
<p class="card-header-title">
|
|
|
|
<span>{% include 'snippets/book_titleby.html' with book=book %}</span>
|
2020-11-07 14:54:32 -05:00
|
|
|
</p>
|
2021-02-27 10:47:03 -05:00
|
|
|
<div class="card-header-icon is-hidden-tablet">
|
2021-02-28 20:10:30 -05:00
|
|
|
{% trans "Close" as button_text %}
|
|
|
|
{% include 'snippets/toggle/toggle_button.html' with label=button_text controls_text="book" controls_uid=book.id class="delete" nonbutton=True pressed=True %}
|
2020-11-06 23:36:52 -05:00
|
|
|
</div>
|
2021-02-27 10:47:03 -05:00
|
|
|
</div>
|
|
|
|
<div class="card-content">
|
2021-01-30 18:59:50 -05:00
|
|
|
{% include 'snippets/shelve_button/shelve_button.html' with book=book %}
|
2021-01-20 02:04:08 -05:00
|
|
|
{% active_shelf book as active_shelf %}
|
|
|
|
{% if active_shelf.shelf.identifier == 'reading' and book.latest_readthrough %}
|
|
|
|
{% include 'snippets/progress_update.html' with readthrough=book.latest_readthrough %}
|
|
|
|
{% endif %}
|
2021-01-17 23:19:09 -05:00
|
|
|
{% include 'snippets/create_status.html' with book=book %}
|
2020-09-30 15:19:23 -04:00
|
|
|
</div>
|
2020-09-29 20:43:30 -04:00
|
|
|
</div>
|
2021-02-27 10:47:03 -05:00
|
|
|
{% endfor %}
|
|
|
|
{% endwith %}
|
|
|
|
{% endfor %}
|
2021-02-28 13:04:04 -05:00
|
|
|
</div>
|
2020-10-02 18:06:42 -04:00
|
|
|
{% endif %}
|
2021-01-16 11:19:54 -05:00
|
|
|
|
|
|
|
{% if goal %}
|
|
|
|
<section class="section">
|
|
|
|
<div class="block">
|
2021-02-27 21:48:10 -05:00
|
|
|
<h3 class="title is-4">{% blocktrans with yar=goal.year %}{{ year }} Reading Goal{% endblocktrans %}</h3>
|
2021-01-16 14:34:19 -05:00
|
|
|
{% include 'snippets/goal_progress.html' with goal=goal %}
|
2021-01-16 11:19:54 -05:00
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
{% endif %}
|
2020-09-29 13:21:10 -04:00
|
|
|
</div>
|
2021-01-29 13:25:31 -05:00
|
|
|
{% endif %}
|
2020-01-25 18:25:19 -05:00
|
|
|
|
2020-09-29 20:51:57 -04:00
|
|
|
<div class="column is-two-thirds" id="feed">
|
2021-01-29 13:25:31 -05:00
|
|
|
{% block panel %}{% endblock %}
|
2021-01-16 11:19:54 -05:00
|
|
|
|
2021-01-29 13:25:31 -05:00
|
|
|
{% if activities %}
|
2021-01-29 14:14:18 -05:00
|
|
|
{% include 'snippets/pagination.html' with page=activities path=path anchor="#feed" %}
|
2020-10-02 18:06:42 -04:00
|
|
|
{% endif %}
|
2020-09-29 20:43:30 -04:00
|
|
|
</div>
|
2020-09-29 13:21:10 -04:00
|
|
|
</div>
|
2020-01-25 18:25:19 -05:00
|
|
|
{% endblock %}
|
2021-01-29 13:25:31 -05:00
|
|
|
|