{% extends "layout.html" %} {% load history_tags %} {% load i18n %} {% block title %} {% trans "All reviews" %} | {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Customer reviews" %} {% endblock %} {% block content %}
{% include 'catalogue/reviews/review_product.html' %} {% if reviews %}
{% for field in form %} {{ field.label }} {{ field }} {% endfor %}
{% 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 %}
{% endblock %}