bookwyrm/bookwyrm/templates/feed.html

81 lines
2.9 KiB
HTML
Raw Normal View History

2020-01-25 23:25:19 +00:00
{% extends 'layout.html' %}
2020-01-29 23:10:32 +00:00
{% load fr_display %}
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">
<h2 class="title is-4">Suggested 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-09-30 00:43:30 +00:00
<div class="tabs is-small is-toggle">
<ul>
2020-09-30 22:00:46 +00:00
{% for book in suggested_books %}
2020-09-30 00:43:30 +00:00
<li class="{% if forloop.first %}is-active{% endif %}" data-id="tab-book-{{ book.id }}">
<label for="book-{{ book.id }}" onclick="tabChange(event)"><a>{% include 'snippets/book_cover.html' with book=book size="medium" %}</a></label>
</li>
{% endfor %}
</ul>
</div>
2020-09-30 22:00:46 +00:00
{% for book in suggested_books %}
2020-09-30 00:43:30 +00:00
<div>
<input class="toggle-control" type="radio" name="recent-books" id="book-{{ book.id }}" {% if forloop.first %}checked{% endif %}>
<div class="toggle-content hidden">
<div class="block">
{% include 'snippets/book_titleby.html' with book=book %}
{% include 'snippets/shelve_button.html' with book=book %}
</div>
2020-09-30 00:43:30 +00:00
{% include 'snippets/create_status.html' with book=book %}
</div>
</div>
{% endfor %}
{% 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">
<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>
{% 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 %}
2020-09-30 00:43:30 +00:00
<nav class="pagination" role="navigation" aria-label="pagination">
{% if prev %}
<p class="pagination-previous">
<a href="{{ prev }}">
<span class="icon icon-arrow-left"></span>
Previous
</a>
</p>
{% endif %}
{% if next %}
<p class="pagination-next">
<a href="{{ next }}">
Next
<span class="icon icon-arrow-right"></span>
</a>
</p>
{% endif %}
</nav>
</div>
2020-09-29 17:21:10 +00:00
</div>
2020-01-25 23:25:19 +00:00
{% endblock %}