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 %}
|
|
|
|
<div id="sidebar">
|
2020-01-29 01:23:38 +00:00
|
|
|
<div>
|
|
|
|
<h2>Currently Reading</h2>
|
|
|
|
{# listing books currently on user's shelves #}
|
2020-01-29 08:05:58 +00:00
|
|
|
{% if not reading.books.all %}
|
2020-01-29 01:23:38 +00:00
|
|
|
<p>Start a book!</p>
|
2020-01-29 08:05:58 +00:00
|
|
|
{% for book in to_read.books.all %}
|
|
|
|
<div class="book-preview">
|
2020-02-11 05:23:21 +00:00
|
|
|
{% include 'snippets/book.html' with book=book size="small" %}
|
2020-02-15 22:38:46 +00:00
|
|
|
<form name="shelve" action="/shelve/{{ user.localname }}/reading/{{ book.id }}" method="post">
|
2020-01-29 20:53:12 +00:00
|
|
|
{% csrf_token %}
|
2020-01-29 08:22:48 +00:00
|
|
|
<input type="hidden" name="book" value="book.id"></input>
|
|
|
|
<button type="submit">Start reading</button>
|
|
|
|
</form>
|
2020-01-29 08:05:58 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-01-25 23:25:19 +00:00
|
|
|
{% endif %}
|
2020-01-29 08:05:58 +00:00
|
|
|
|
|
|
|
{% for book in reading.books.all %}
|
2020-01-29 01:23:38 +00:00
|
|
|
<div class="book-preview">
|
2020-02-11 05:23:21 +00:00
|
|
|
{% include 'snippets/book.html' with book=book size="small" %}
|
2020-02-15 22:38:46 +00:00
|
|
|
<form name="shelve" action="/shelve/{{ user.localname }}/read/{{ book.id }}" method="post">
|
2020-01-29 20:53:12 +00:00
|
|
|
{% csrf_token %}
|
2020-01-29 08:22:48 +00:00
|
|
|
<input type="hidden" name="book" value="book.id"></input>
|
|
|
|
<button type="submit">I'm done!</button>
|
|
|
|
</form>
|
2020-01-29 01:23:38 +00:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-01-25 23:25:19 +00:00
|
|
|
</div>
|
|
|
|
|
2020-01-29 01:23:38 +00:00
|
|
|
<div>
|
|
|
|
<h2>Recently Added Books</h2>
|
2020-01-27 01:55:02 +00:00
|
|
|
{% for book in recent_books %}
|
|
|
|
<div class="book-preview">
|
2020-02-11 05:23:21 +00:00
|
|
|
{% include 'snippets/book.html' with book=book size="small" %}
|
2020-01-29 01:23:38 +00:00
|
|
|
{% if not book in user_books.all %}
|
2020-02-15 22:38:46 +00:00
|
|
|
<form name="shelve" action="/shelve/{{ user.localname }}/to-read/{{ book.id }}" method="post">
|
2020-01-29 20:53:12 +00:00
|
|
|
{% csrf_token %}
|
2020-01-27 01:55:02 +00:00
|
|
|
<input type="hidden" name="book" value="book.id"></input>
|
2020-01-28 23:23:49 +00:00
|
|
|
<button type="submit">Want to read</button>
|
2020-01-27 01:55:02 +00:00
|
|
|
</form>
|
|
|
|
{% endif %}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2020-01-29 01:23:38 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div id="feed">
|
2020-02-20 02:02:11 +00:00
|
|
|
<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-29 01:23:38 +00:00
|
|
|
|
2020-01-28 02:47:54 +00:00
|
|
|
{% for activity in activities %}
|
2020-02-20 02:02:11 +00:00
|
|
|
{% include 'snippets/status.html' with activity=activity %}
|
2020-01-28 02:47:54 +00:00
|
|
|
{% endfor %}
|
2020-01-25 23:25:19 +00:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|