{# Template for displaying email context (JSON) in show view #} {% extends '@SonataAdmin/CRUD/base_show_field.html.twig' %} {% block field %} {% set context = value %} {% if context is not null and context is iterable %}
| Variable | Valeur |
|---|---|
{{ key }} |
{% if val is iterable %}
{{ val|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% else %}
{{ val }}
{% endif %}
|