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 %}
|
2020-02-21 18:39:25 -05:00
|
|
|
|
2020-02-23 17:26:03 -05:00
|
|
|
<div id="sidebar">
|
2020-01-28 20:23:38 -05:00
|
|
|
<div>
|
2020-02-21 18:39:25 -05:00
|
|
|
{% if shelves %}
|
|
|
|
{% for shelf in shelves %}
|
|
|
|
<h2>{{ shelf.name }}</h2>
|
|
|
|
{% for book in shelf.books %}
|
2020-01-29 03:05:58 -05:00
|
|
|
<div class="book-preview">
|
2020-02-11 00:23:21 -05:00
|
|
|
{% include 'snippets/book.html' with book=book size="small" %}
|
2020-01-29 03:05:58 -05:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
2020-02-21 18:39:25 -05:00
|
|
|
{% if shelf.size > shelf.books.count %}
|
2020-02-21 19:03:05 -05:00
|
|
|
<a href="/shelf/{{ user | username }}/{{ shelf.identifier }}">See all {{ shelf.size }}</a>
|
2020-01-25 18:25:19 -05:00
|
|
|
{% endif %}
|
2020-01-28 20:23:38 -05:00
|
|
|
{% endfor %}
|
2020-02-21 18:39:25 -05:00
|
|
|
|
|
|
|
{% else %}
|
|
|
|
<h2>Reading Activity</h2>
|
|
|
|
<p>Start a book!</p>
|
|
|
|
{% endif %}
|
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">
|
2020-02-11 00:23:21 -05:00
|
|
|
{% include 'snippets/book.html' with book=book size="small" %}
|
2020-01-26 20:55:02 -05:00
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
2020-01-28 20:23:38 -05:00
|
|
|
</div>
|
|
|
|
|
2020-02-23 17:26:03 -05:00
|
|
|
|
2020-01-28 20:23:38 -05:00
|
|
|
<div id="feed">
|
2020-02-23 17:26:03 -05:00
|
|
|
{% include 'snippets/tabs.html' with tabs=feed_tabs active_tab=active_tab %}
|
2020-01-28 20:23:38 -05:00
|
|
|
|
2020-01-27 21:47:54 -05:00
|
|
|
{% for activity in activities %}
|
2020-03-09 20:27:54 -04:00
|
|
|
{% include 'snippets/status.html' with status=activity depth=1 description=True %}
|
2020-01-27 21:47:54 -05:00
|
|
|
{% endfor %}
|
2020-01-25 18:25:19 -05:00
|
|
|
</div>
|
2020-02-23 17:26:03 -05:00
|
|
|
|
2020-01-25 18:25:19 -05:00
|
|
|
{% endblock %}
|