mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-29 21:48:45 +02:00
15 lines
570 B
Twig
15 lines
570 B
Twig
{# @copyright Copyright (C) 2010-2025 Combodo SARL #}
|
|
{# @license http://opensource.org/licenses/AGPL-3.0 #}
|
|
|
|
{% for sBlockIdentifier, oBlockToRedraw in blocks_to_redraw %}
|
|
{% UITurboStream Update { sTarget: "turbo_" ~ sBlockIdentifier} %}
|
|
{% if oBlockToRedraw is not null %}
|
|
{{ form_row(oBlockToRedraw) }}
|
|
{% endif %}
|
|
{% EndUITurboStream %}
|
|
{% endfor %}
|
|
{% if current_block %}
|
|
{% UITurboStream Replace { sTarget: "turbo_error_" ~ current_block.vars.id} %}
|
|
{{ form_errors(current_block) }}
|
|
{% EndUITurboStream %}
|
|
{% endif %} |