{% import '_includes/forms' as forms %} {% if configOptions|length > 1 %} {% set configInput %} {{ forms.select({ id: 'configFle', name: 'configFile', options: configOptions, value: field.configFile }) }} {% endset %} {% else %} {% set configInput %}

{{ 'You don’t have any Redactor configs yet.'|t('app')|raw }}

{% endset %} {% endif %} {{ forms.field({ label: "Config"|t('app'), instructions: "You can save custom Redactor configs as .json files in config/redactor/."|t('app')~' '~"View available settings"|t('app')~'.', id: 'configFile' }, configInput) }} {{ forms.checkboxSelectField({ id: 'availableVolumes', name: 'availableVolumes', label: 'Available Volumes'|t('app'), instructions: 'The volumes that should be available when selecting assets (if the selected config has an Image or File button).'|t('app'), options: volumeOptions, values: field.availableVolumes, showAllOption: volumeOptions|length ? true : false }) }} {{ forms.checkboxSelectField({ id: 'availableTransforms', name: 'availableTransforms', label: 'Available Transforms'|t('app'), instructions: 'The Transforms that should be available for Image selection.'|t('app'), options: transformOptions, values: field.availableTransforms, showAllOption: transformOptions|length ? true : false }) }}
{{ "Advanced"|t('app') }}