Dynamic Tables
This snippet lets you create tables that automatically adjust to match the length of your field values. The generated table will have one column per field.
Table Configuration
{% set max_length = [<field_1>|length, <field_2>|length, <field_3>|length]|max %}
{{ <field>[i] if i < <field>|length else "" }}
Finished Table

Last updated
Was this helpful?