{% extends "oscar/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 'oscar/catalogue/reviews/review_product.html' %} {% if reviews %}
{% include "oscar/partials/form_fields_inline.html" with form=form %}

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

{% trans "This product does not have any reviews yet." %}

{% endif %}
{% endblock %}