diff --git a/record.twig b/record.twig index 690fde9..b726055 100644 --- a/record.twig +++ b/record.twig @@ -64,10 +64,14 @@ {{ attribute(record, key)|join(", ") }}
- {% elseif record.fieldtype(key) not in ['templateselect'] and value != "" %} + {% elseif record.fieldtype(key) not in ['templateselect'] and key != "templatefields" and value != "" %}{{ key }}: - {{ attribute(record, key) }} + {% if attribute(record, key) is iterable %} + {{ dump(attribute(record, key)) }} + {% else %} + {{ attribute(record, key) }} + {% endif %}
{% endif %} @@ -119,4 +123,4 @@