{% load i18n %} {% load utilities %} {% with user_path=status.user.local_path username=status.user.display_name book_path=status.book.local_poth book_title=book|book_title %} {% if status.status_type == 'GeneratedNote' %} {{ status.content|safe }} {% 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 %}