{% load reviews_tags %} {% load i18n %}

{{ review.title }}

{{ review.body|striptags }}

{% if review.user == user %} {% blocktrans with review_date=review.date_created %} Reviewed by you on {{ review_date }} {% endblocktrans %} {% else %} {% blocktrans with name=review.reviewer_name review_date=review.date_created %} Reviewed by {{ name }} on {{ review_date }} {% endblocktrans %} {% endif %} | {% trans 'Permalink' %}

{% if review|may_vote:user %} {% trans "Is this review helpful?" %}
{% csrf_token %}
{% csrf_token %}
{% endif %}

{% if review.has_votes %} {% blocktrans with num_up_votes=review.num_up_votes count num_votes=review.total_votes %} {{ num_up_votes }} of {{ num_votes }} customer found this useful {% plural %} {{ num_up_votes }} of {{ num_votes }} customers found this useful {% endblocktrans %} {% else %} {% trans "This review has no votes." %} {% endif %}