{% load i18n %}
{% load utilities %}
{% with user_path=status.user.local_path username=status.user.display_name book_path=book.local_path book_title=book|book_title %}
{% if status.status_type == 'GeneratedNote' %}
{% if status.content == 'wants to read' %}
{% blocktrans trimmed %}
{{ username }} wants to read {{ book_title }}
{% endblocktrans %}
{% endif %}
{% if status.content == 'finished reading' %}
{% blocktrans trimmed %}
{{ username }} finished reading {{ book_title }}
{% endblocktrans %}
{% endif %}
{% if status.content == 'started reading' %}
{% blocktrans trimmed %}
{{ username }} started reading {{ book_title }}
{% endblocktrans %}
{% endif %}
{% elif status.status_type == 'Rating' %}
{% blocktrans trimmed %}
{{ username }} rated {{ book_title }}
{% endblocktrans %}
{% elif status.status_type == 'Review' %}
{% blocktrans trimmed %}
{{ username }} reviewed {{ book_title }}
{% endblocktrans %}
{% elif status.status_type == 'Comment' %}
{% blocktrans trimmed %}
{{ username }} commented on {{ book_title }}
{% endblocktrans %}
{% elif status.status_type == 'Quotation' %}
{% blocktrans trimmed %}
{{ username }} quoted {{ book_title }}
{% endblocktrans %}
{% endif %}
{% endwith %}