{% extends "layout.html" %} {% load currency_filters %} {% load history_tags %} {% load thumbnail %} {% load i18n %} {% block title %} {% trans "Reviews for" %} {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block content %}

All Reviews of {{ product.title }}

{% trans "Read customer reviews on this product." %}

{% trans "Add a review" %}

{% if reviews %}

{% 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 %}
{% endfor %} {% if page_obj %} {% endif %} {% else %}

This product does not have any reviews yet.

{% endif %}
{% with image=product.primary_image %} {% thumbnail image.original "400x400" upscale=False as thumb %} {{ product.get_title }} {% endthumbnail %} {% endwith %}

{{ product.get_title }}

{% include "catalogue/partials/stock_record.html" %} {% include "catalogue/partials/add_to_basket_form.html" %}
{% recently_viewed_products %}
{% endblock %}