{% extends 'vizy/_layouts/settings' %} {% import '_includes/forms' as forms %} {% import 'verbb-base/_macros' as macros %} {% set crumbs = [ { label: 'Vizy' | t('vizy'), url: url('vizy/settings') }, { label: 'Settings' | t('app'), url: url('vizy/settings') } ] %} {% set selectedTab = 'settings' %} {% set fullPageForm = true %} {% block content %}

{{ 'General Settings' | t('vizy') }}

{% namespace 'settings' %} {{ forms.autosuggestField({ label: 'Icons Path' | t('vizy'), instructions: 'Provide the full path to your icon files. Aliases are also supported.' | t('vizy'), name: 'iconsPath', value: settings.iconsPath, suggestEnvVars: true, suggestAliases: true, errors: settings.getErrors('iconsPath'), warning: macros.configWarning('iconsPath', 'vizy'), }) }} {% endnamespace %} {% endblock %}