bookwyrm/bookwyrm/templates/feed.html

112 lines
4.6 KiB
HTML
Raw Normal View History

2020-01-25 23:25:19 +00:00
{% extends 'layout.html' %}
2020-12-13 02:25:04 +00:00
{% load bookwyrm_tags %}
2020-01-25 23:25:19 +00:00
{% block content %}
2020-02-21 23:39:25 +00:00
2020-09-30 00:43:30 +00:00
<div class="columns">
2020-09-30 22:00:46 +00:00
<div class="column is-one-third">
2020-11-07 04:36:52 +00:00
<h2 class="title is-5">Your books</h2>
{% if not suggested_books %}
<p>There are no books here right now! Try searching for a book to get started</p>
{% else %}
2020-11-07 04:36:52 +00:00
<div class="tabs is-small">
2021-01-18 04:19:09 +00:00
<ul role="tablist">
2020-11-07 04:36:52 +00:00
{% for shelf in suggested_books %}
2020-11-07 04:51:11 +00:00
{% if shelf.books %}
2020-11-07 04:36:52 +00:00
{% with shelf_counter=forloop.counter %}
<li>
<p>
{{ shelf.name }}
</p>
2021-01-18 04:19:09 +00:00
<div class="tabs is-small is-toggle">
2020-11-07 04:36:52 +00:00
<ul>
{% for book in shelf.books %}
2021-01-18 04:19:09 +00:00
<li class="tab-change{% if shelf_counter == 1 and forloop.first %} is-active{% endif %}" data-tab="book-{{ book.id }}" data-tab="book-{{ book.id }}" role="tab" tabindex="0" aria-selected="{% if shelf_counter == 1 and forloop.first %}true{% else %}false{% endif %}" aria-controls="book-{{ book.id }}" data-category="suggested-tabs">
<a>
{% include 'snippets/book_cover.html' with book=book size="medium" %}
</a>
2020-11-07 04:36:52 +00:00
</li>
{% endfor %}
</ul>
</div>
2020-09-30 00:43:30 +00:00
</li>
2020-11-07 04:36:52 +00:00
{% endwith %}
{% endif %}
{% endfor %}
2020-09-30 00:43:30 +00:00
</ul>
</div>
2020-11-07 04:36:52 +00:00
{% for shelf in suggested_books %}
{% with shelf_counter=forloop.counter %}
{% for book in shelf.books %}
2021-01-18 04:19:09 +00:00
<div class="suggested-tabs card{% if shelf_counter != 1 or not forloop.first %} hidden{% endif %}" role="tabpanel" id="book-{{ book.id }}">
<div class="card-header">
<p class="card-header-title">
<span>{% include 'snippets/book_titleby.html' with book=book %}</span>
</p>
<div class="card-header-icon is-hidden-tablet">
{% include 'snippets/toggle/toggle_button.html' with label="close" controls_text="book" controls_uid=book.id class="delete" nonbutton=True pressed=True %}
</div>
2020-09-30 00:43:30 +00:00
</div>
2021-01-18 04:19:09 +00:00
<div class="card-content">
2021-01-20 07:04:08 +00:00
{% include 'snippets/shelve_button.html' with book=book %}
{% 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-18 04:19:09 +00:00
{% include 'snippets/create_status.html' with book=book %}
2020-09-30 00:43:30 +00:00
</div>
</div>
{% endfor %}
2020-11-07 04:36:52 +00:00
{% endwith %}
{% endfor %}
{% endif %}
{% if goal %}
<section class="section">
<div class="block">
2021-01-16 19:34:19 +00:00
<h3 class="title is-4">{{ goal.year }} Reading Goal</h3>
{% include 'snippets/goal_progress.html' with goal=goal %}
</div>
</section>
{% endif %}
2020-09-29 17:21:10 +00:00
</div>
2020-01-25 23:25:19 +00:00
2020-09-30 00:51:57 +00:00
<div class="column is-two-thirds" id="feed">
<h1 class="title">{{ tab | title }} Timeline</h1>
<div class="tabs">
<ul>
<li class="{% if tab == 'home' %}is-active{% endif %}">
<a href="/#feed">Home</a>
</li>
<li class="{% if tab == 'local' %}is-active{% endif %}">
<a href="/local#feed">Local</a>
</li>
<li class="{% if tab == 'federated' %}is-active{% endif %}">
<a href="/federated#feed">Federated</a>
</li>
</ul>
</div>
{# announcements and system messages #}
{% if not goal and tab == 'home' %}
{% now 'Y' as year %}
<section class="block hidden" aria-title="Announcements" data-hide="hide-{{ year }}-reading-goal">
{% include 'snippets/goal_card.html' with year=year %}
<hr>
</section>
{% endif %}
{# activity feed #}
{% if not activities %}
<p>There aren't any activities right now! Try following a user to get started</p>
{% endif %}
2020-09-30 00:43:30 +00:00
{% for activity in activities %}
<div class="block">
{% include 'snippets/status.html' with status=activity %}
</div>
{% endfor %}
{% include 'snippets/pagination.html' with page=activities path='/'|add:tab anchor="#feed" %}
2020-09-30 00:43:30 +00:00
</div>
2020-09-29 17:21:10 +00:00
</div>
2020-01-25 23:25:19 +00:00
{% endblock %}