{# @copyright Copyright (C) 2010-2025 Combodo SARL #} {# @license http://opensource.org/licenses/AGPL-3.0 #} {% for sBlockIdentifier, oBlockToRedraw in blocks_to_redraw %} {% UITurboStream Replace { sTarget: "turbo_" ~ sBlockIdentifier} %} {% if oBlockToRedraw is not null %} {% set row_attr = {id: 'turbo_' ~ sBlockIdentifier } %} {{ form_row(oBlockToRedraw, {row_attr: row_attr}) }} {% else %}
{% endif %} {% EndUITurboStream %} {% endfor %} {% if current_block %} {% UITurboStream Replace { sTarget: "turbo_error_" ~ current_block.vars.id} %} {{ form_errors(current_block) }} {% EndUITurboStream %} {% endif %} {% if current_form %} {% UITurboStream Replace { sTarget: current_form.vars.id} %} {{ form_widget(current_form) }}