We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ffa44a3 + 6caf164 commit a156b3cCopy full SHA for a156b3c
templates/admin/field/report.html.twig
@@ -2,5 +2,7 @@
2
{# @var field \EasyCorp\Bundle\EasyAdminBundle\Dto\FieldDto #}
3
{# @var entity \EasyCorp\Bundle\EasyAdminBundle\Dto\EntityDto #}
4
<ul>
5
- {{ field.value }}
+ {% for key, item in field.value %}
6
+ <li class="list-group-item"><span class="badge badge-{{ log_css_class(key) }}">{{ key }}</span> : {{ item }}</li>
7
+ {% endfor %}
8
</ul>
0 commit comments