{% import "_includes/forms" as forms %} {% set blockTypeInput %}
{{ "Block Types"|t }}
{% for blockType in blockTypes %}
{% if blockType.name %}{{ blockType.name }}{% else %} {% endif %}
{% if blockType.handle %}{{ blockType.handle }}{% else %} {% endif %}
{% endfor %}
{{ "New block type"|t }}
{% endset %}
{{ forms.field({ label: "Configuration"|t, instructions: "Define the types of blocks that can be created within this Matrix field, as well as the fields each block type is made up of."|t, name: 'config' }, blockTypeInput) }}