{% extends 'notifications/items/layout.html' %} {% load i18n %} {% load utilities %} {% block primary_link %}{% spaceless %} {{ notification.related_status.local_path }} {% endspaceless %}{% endblock %} {% block icon %} {% endblock %} {% block description %} {% with related_status.book|book_title as book_title %} {% with related_status.local_path as related_path %} {% if related_status.status_type == 'Review' %} {% if other_user_count == 0 %} {% blocktrans trimmed %} {{ related_user }} liked your review of {{ book_title }} {% endblocktrans %} {% elif other_user_count == 1 %} {% blocktrans trimmed %} {{ related_user }} and {{ second_user }} liked your review of {{ book_title }} {% endblocktrans %} {% else %} {% blocktrans trimmed %} {{ related_user }} and {{ other_user_count }} others liked your review of {{ book_title }} {% endblocktrans %} {% endif %} {% elif related_status.status_type == 'Comment' %} {% if other_user_count == 0 %} {% blocktrans trimmed %} {{ related_user }} liked your comment on {{ book_title }} {% endblocktrans %} {% elif other_user_count == 1 %} {% blocktrans trimmed %} {{ related_user }} and {{ second_user }} liked your comment on {{ book_title }} {% endblocktrans %} {% else %} {% blocktrans trimmed %} {{ related_user }} and {{ other_user_count }} others liked your comment on {{ book_title }} {% endblocktrans %} {% endif %} {% elif related_status.status_type == 'Quotation' %} {% if other_user_count == 0 %} {% blocktrans trimmed %} {{ related_user }} liked your quote from {{ book_title }} {% endblocktrans %} {% elif other_user_count == 1 %} {% blocktrans trimmed %} {{ related_user }} and {{ second_user }} liked your quote from {{ book_title }} {% endblocktrans %} {% else %} {% blocktrans trimmed %} {{ related_user }} and {{ other_user_count }} others liked your quote from {{ book_title }} {% endblocktrans %} {% endif %} {% else %} {% if other_user_count == 0 %} {% blocktrans trimmed %} {{ related_user }} liked your status {% endblocktrans %} {% elif other_user_count == 1 %} {% blocktrans trimmed %} {{ related_user }} and {{ second_user }} liked your status {% endblocktrans %} {% else %} {% blocktrans trimmed %} {{ related_user }} and {{ other_user_count }} others liked your status {% endblocktrans %} {% endif %} {% endif %} {% endwith %} {% endwith %} {% endblock %} {% block preview %}
{% include 'snippets/status_preview.html' with status=related_status %}
{{ related_status.published_date|timesince }} {% include 'snippets/privacy-icons.html' with item=related_status %}
{% endblock %}