All Reviews of {{ product.title }}
{% trans "Read customer reviews on this product." %}
{% trans "Sort by:" %}
{% for review in reviews %}{{ review.title }} ({{ review.score }}/5)
Reviewed by {{ review.get_reviewer_name }}
{{ review.date_created }}
{{ review.body|linebreaks }}
Permalink {% include 'reviews/_vote_bit.html' %} {% if review.has_votes %}
{% blocktrans count review.num_up_votes as counter %} 1 customer agreed. {% plural %} {{ review.num_up_votes }} customers agreed. {% endblocktrans %}
{% endif %}
{% if page_obj.has_previous %}
{% trans "Previous" %}
{% endif %}
{% if paginator.num_pages > 1 %}
{% blocktrans %}
Page {{ page_obj.number }} of {{ paginator.num_pages }}.
{% endblocktrans %}
{% endif %}
{% if page_obj.has_next %}
{% trans "Next" %}
{% endif %}
{% endif %}
{% else %}
This product does not have any reviews yet.
{% endif %}
{% with image=product.primary_image %}
{% thumbnail image.original "400x400" upscale=False as thumb %}
{% endthumbnail %}
{% endwith %}