{% extends "qommon/forms/widget.html" %} {% load i18n %} {% block widget-attrs %} {{ block.super }} data-block-row="element{{ widget.index }}" {% endblock %} {% block widget-content %} {% if not widget.readonly and widget.error and not widget.is_required_error %}

{{ widget.error }}

{% endif %} {% for subwidget in widget.get_widgets %} {% if widget.readonly and not subwidget.field.include_in_validation_page %}
{% endif %} {{ subwidget.render|safe }} {% if widget.readonly and not subwidget.field.include_in_validation_page %}
{% endif %} {% endfor %} {% if not widget.readonly and widget.remove_button %}{% endif %} {% endblock %}