bookwyrm-mastodon/fedireads/templates/feed.html

65 lines
2.2 KiB
HTML
Raw Normal View History

2020-01-25 18:25:19 -05:00
{% extends 'layout.html' %}
2020-01-29 18:10:32 -05:00
{% load fr_display %}
2020-01-25 18:25:19 -05:00
{% block content %}
<div id="sidebar">
2020-01-28 20:23:38 -05:00
<div>
<h2>Currently Reading</h2>
{# listing books currently on user's shelves #}
2020-01-29 03:05:58 -05:00
{% if not reading.books.all %}
2020-01-28 20:23:38 -05:00
<p>Start a book!</p>
2020-01-29 03:05:58 -05:00
{% for book in to_read.books.all %}
<div class="book-preview">
{% include 'snippets/book.html' with book=book size="small" %}
2020-02-15 17:38:46 -05:00
<form name="shelve" action="/shelve/{{ user.localname }}/reading/{{ book.id }}" method="post">
2020-01-29 15:53:12 -05:00
{% csrf_token %}
2020-01-29 03:22:48 -05:00
<input type="hidden" name="book" value="book.id"></input>
<button type="submit">Start reading</button>
</form>
2020-01-29 03:05:58 -05:00
</div>
{% endfor %}
2020-01-25 18:25:19 -05:00
{% endif %}
2020-01-29 03:05:58 -05:00
{% for book in reading.books.all %}
2020-01-28 20:23:38 -05:00
<div class="book-preview">
{% include 'snippets/book.html' with book=book size="small" %}
2020-02-15 17:38:46 -05:00
<form name="shelve" action="/shelve/{{ user.localname }}/read/{{ book.id }}" method="post">
2020-01-29 15:53:12 -05:00
{% csrf_token %}
2020-01-29 03:22:48 -05:00
<input type="hidden" name="book" value="book.id"></input>
<button type="submit">I'm done!</button>
</form>
2020-01-28 20:23:38 -05:00
</div>
{% endfor %}
2020-01-25 18:25:19 -05:00
</div>
2020-01-28 20:23:38 -05:00
<div>
<h2>Recently Added Books</h2>
2020-01-26 20:55:02 -05:00
{% for book in recent_books %}
<div class="book-preview">
{% include 'snippets/book.html' with book=book size="small" %}
2020-01-28 20:23:38 -05:00
{% if not book in user_books.all %}
2020-02-15 17:38:46 -05:00
<form name="shelve" action="/shelve/{{ user.localname }}/to-read/{{ book.id }}" method="post">
2020-01-29 15:53:12 -05:00
{% csrf_token %}
2020-01-26 20:55:02 -05:00
<input type="hidden" name="book" value="book.id"></input>
2020-01-28 18:23:49 -05:00
<button type="submit">Want to read</button>
2020-01-26 20:55:02 -05:00
</form>
{% endif %}
</div>
{% endfor %}
</div>
2020-01-28 20:23:38 -05:00
</div>
<div id="feed">
<div id="feed-tabs">
{% for tab in feed_tabs %}
<div class="{% if tab == active_tab %}active{% endif %}">
<a href="/{{ tab }}">{{ tab }}</a>
</div>
{% endfor %}
</div>
2020-01-28 20:23:38 -05:00
2020-01-27 21:47:54 -05:00
{% for activity in activities %}
{% include 'snippets/status.html' with activity=activity %}
2020-01-27 21:47:54 -05:00
{% endfor %}
2020-01-25 18:25:19 -05:00
</div>
{% endblock %}