{% import '_includes/forms' as forms %} {{ forms.selectField({ label: "Redactor Config"|t('app'), instructions: "You can save custom {name} configs as {ext} files in {path}."|t('app', { name: 'Redactor', ext: '`.json`', path: '`craft/config/redactor/`' }) ~ ' '~"View available settings"|t('app')~'', id: 'redactorConfig', name: 'redactorConfig', options: redactorConfigOptions, value: field.redactorConfig }) }} {{ 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') }}