{% extends "layout.html" %} {% load currency_filters %} {% load history_tags %} {% load thumbnail %} {% load i18n %} {% block title %} {% trans "All reviews" %} | {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {{ product.get_title }} {% endblock %} {% block content %}
{% trans "Write a review" %}

{% trans "Customer reviews" %}

{% if reviews %}

{% trans "Sort by:" %}

{% for review in reviews %} {% include 'catalogue/partials/review.html' %} {% endfor %} {% include 'partials/pagination.html' %} {% else %}

{% trans "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" %}
{% endblock %}