{% extends "oscar/layout.html" %} {% load history_tags %} {% load i18n %} {% block title %} {% trans "All reviews" %} | {{ product.title }} | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% trans "Home" %} {% with category=product.categories.all.0 %} {% for c in category.get_ancestors_and_self %} {{ c.name }} {% endfor %} {{ product.title }} {% endwith %} {% trans "All reviews" %} {% 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 %} {% trans "Go" %} {% 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 %}
{% trans "This product does not have any reviews yet." %}