{% extends "oscar/layout.html" %} {% load i18n %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% include 'oscar/partials/breadcrumbs.html' with product=product %} {% endblock breadcrumbs %} {% block content %}

{% trans "Product review" %}

{% csrf_token %}
{{ form.score }}
{% include "oscar/catalogue/reviews/partials/stars.html" with rating=0 %}
{% for error in form.score.errors %} {{ error }} {% endfor %}
{% comment %} {% include 'oscar/partials/form_field.html' with field=form.score %} {% endcomment %}
{% include 'oscar/partials/form_field.html' with field=form.title %} {% trans "Message" as message %} {% include 'oscar/partials/form_field.html' with field=form.body label=message %} {% if form.name %} {% include 'oscar/partials/form_field.html' with field=form.name %} {% endif %} {% if form.email %} {% include 'oscar/partials/form_field.html' with field=form.email %} {% endif %} {% if form.captcha %} {% include 'oscar/partials/form_field.html' with field=form.captcha %} {% endif %}
{% trans "cancel" %}
{% include 'oscar/catalogue/partials/product.html' with product=product %}
{% endblock %}