{% extends "oscar/layout.html" %} {% load history_tags %} {% load i18n %} {% load ocyan_main %} {% block extrahead %} {{ block.super }} {% endblock %} {% block title %} {% trans "All reviews" %} | {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block headertext %} {% trans "Customer reviews" %} {% endblock %} {% block content %}
{% if reviews %}
{% include 'oscar/catalogue/partials/product.html' %}
{% 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 %}