SuperSeller3000/templates/admin/field/attribute_values.html.twig
Simon Kuehn 945f0479ca feat: collapsible attribute list on article detail via <details> element
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-18 11:22:07 +00:00

14 lines
594 B
Twig

{% set values = entity.instance.attributeValues|filter(av => av.value != '') %}
<details>
<summary style="cursor:pointer;user-select:none;">
{{ values|length }} Attribute
</summary>
<table style="margin-top:.5rem;border-collapse:collapse;width:100%;">
{% for av in values %}
<tr>
<td style="padding:2px 12px 2px 0;font-weight:600;white-space:nowrap;vertical-align:top;">{{ av.attributeDefinition.name }}</td>
<td style="padding:2px 0;vertical-align:top;">{{ av.value }}</td>
</tr>
{% endfor %}
</table>
</details>