{% extends 'dashboard/layout.html' %} {% load currency_filters %} {% block body_class %}reviews{% endblock %} {% block title %} Update review | {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block header %} {% endblock header %} {% block dashboard_content %}
{% csrf_token %}

Review information

{{ form.first }} {% for field in form %} {# display title (first) and body (last) as full lines #} {% if forloop.counter < 3 %}
{% if field.is_hidden %} {{ field }} {% else %} {{ field.label_tag }}
{{ field }} {% for error in field.errors %} {{ error|escape }} {% endfor %} {% if field.help_text %} {{ field.help_text }} {% endif %}
{% endif %}
{% else %}
{% if field.is_hidden %} {{ field }} {% else %} {{ field.label_tag }} {{ field }} {% for error in field.errors %}
  • {{ error|escape }}
{% endfor %} {% endif %}
{% endif %} {% endfor %}
or cancel
{% endblock dashboard_content %}