{% extends 'user/user_layout.html' %} {% block header %}

{{ year }} Reading Progress

{% if is_self and goal %}
{% include 'snippets/toggle/open_button.html' with text="Edit goal" icon="pencil" controls_text="show-edit-goal" focus="edit-form-header" %}
{% endif %}
{% endblock %} {% block panel %}
{% if user == request.user %}
{% 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' with goal=goal year=year %}
{% endif %} {% if not goal and user != request.user %}

{{ user.display_name }} hasn't set a reading goal for {{ year }}.

{% endif %} {% if goal %} {% include 'snippets/goal_progress.html' with goal=goal %} {% endif %}
{% if goal.books %}

{% if goal.user == request.user %}Your{% else %}{{ goal.user.display_name }}'s{% endif %} {{ year }} Books

{% for book in goal.books %} {% endfor %}
{% endif %} {% endblock %}