{% load i18n %} {% load humanize %}

{% if goal.progress_percent >= 100 %} {% trans "Success!" %} {% elif goal.progress_percent %} {% blocktrans with percent=goal.progress_percent %}{{ percent }}% complete!{% endblocktrans %} {% endif %} {% if goal.user == request.user %} {% blocktrans with read_count=goal.book_count|intcomma goal_count=goal.goal|intcomma path=goal.local_path %}You've read {{ read_count }} of {{ goal_count}} books.{% endblocktrans %} {% else %} {% blocktrans with username=goal.user.display_name read_count=goal.book_count|intcomma goal_count=goal.goal|intcomma path=goal.local_path %}{{ username }} has read {{ read_count }} of {{ goal_count}} books.{% endblocktrans %} {% endif %}