{% if goal.user == request.user %}Your{% else %}{{ goal.user.display_name }}'s{% endif %} {{ year }} Books
{% for book in goal.books %}
{% endfor %}
{% extends 'user/user_layout.html' %} {% load i18n %} {% block header %}
{% blocktrans %}Set a goal for how many books you'll finish reading in {{ year }}, and track your progress throughout the year.{% endblocktrans %}
{% include 'snippets/goal_form.html' with goal=goal year=year %}{% blocktrans with name=user.display_name %}{{ name }} hasn't set a reading goal for {{ year }}.{% endblocktrans %}
{% endif %} {% if goal %} {% include 'snippets/goal_progress.html' with goal=goal %} {% endif %}