{% trans_default_domain 'front_default' %} {% if table %}
{% include 'core/webmaster-edit.html.twig' with { 'title': "Éditer le tableau"|trans([], 'front_webmaster'), 'role': 'ROLE_FORM', 'path': path('admin_table_edit', {'website': website.id, 'table': table.id, "entitylocale": app.request.locale}) } only %} {% set render = table|table(app.request.locale) %} {% for col in render.head %} {% set title = col.i18n.title is defined ? col.i18n.title|unescape|raw : null %} {% endfor %} {% for rows in render.body %} {% for row in rows %} {% set dataTitle = render.head['col-' ~ loop.index].i18n.title is defined ? render.head['col-' ~ loop.index].i18n.title : '' %} {% set i18n = row.i18n %} {% set title = i18n.title is defined ? i18n.title : null %} {% set introduction = i18n.introduction is defined ? i18n.introduction : null %} {% set body = i18n.body is defined ? i18n.body : null %} {% endfor %} {% endfor %}
{{ title }}
{% if title %} {% set titleForce = i18n.titleForce ? i18n.titleForce : 3 %} {{ title|unescape|raw }} {% endif %} {% if introduction %}

{{ introduction|unescape|raw }}

{% endif %} {% if body %}
{{ body|unescape|raw }}
{% endif %}
{% endif %}