{% if log.details.chapter is defined %} {% if log.getDetails().chapter.changeSet is defined and log.getDetails().chapter.changeSet|length > 0 %}

{{ ('log_change_set')|trans({}, 'log') }}

{{ ('log_old_values')|trans({}, 'log') }}
{% set changeSet = log.getDetails().chapter.changeSet %}
{% for key, values in changeSet %}
{{ key|trans({}, 'log') }}
{{ values[0]|raw }}
{% endfor %}
{{ ('log_new_values')|trans({}, 'log') }}
{% for key, values in changeSet %}
{{ key|trans({}, 'log') }}
{{ values[1]|raw }}
{% endfor %}
{% endif %} {% endif %}