{% extends 'layout.html' %} {% load bookwyrm_tags %} {% block content %}

Your books

{% if not suggested_books %}

There are no books here right now! Try searching for a book to get started

{% else %}
{% for shelf in suggested_books %} {% with shelf_counter=forloop.counter %} {% for book in shelf.books %}
{% endfor %} {% endwith %} {% endfor %}
{% endif %} {% if goal %}
{{ goal }} hi
{% endif %}

{{ tab | title }} Timeline

{# announcements and system messages #} {% if not goal and tab == 'home' %}
{% now 'Y' as year %}

{{ year }} reading goal

Set a goal for how many books you'll finish reading in {{ year }}, and track your progress throughout the year.

{% include 'snippets/goal_form.html' %}
{% endif %}
{# activity feed #} {% if not activities %}

There aren't any activities right now! Try following a user to get started

{% endif %} {% for activity in activities %}
{% include 'snippets/status.html' with status=activity %}
{% endfor %} {% include 'snippets/pagination.html' with page=activities path='/'|add:tab anchor="#feed" %}
{% endblock %}