{% 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' %} {% block header %}
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 %}{{ user.display_name }} hasn't set a reading goal for {{ year }}.
{% endif %} {% if goal %} {% include 'snippets/goal_progress.html' with goal=goal %} {% endif %}