{% extends "_layout.html" %} {% set active_page = 'options' %} {% set show_filters = False %} {% block content %}

{{ _('fava: settings') }}

{{ _('You can use the --settings [file] option when starting fava to specify different settings. The settings will be merged with the default-settings, so the table below shows all possible settings-keys.') }}

{{ _('Default settings:') }}
{{ config['DEFAULT_SETTINGS'] }}
{% if config['USER_SETTINGS'] %}
{{ _('User settings:') }}
{{ config['USER_SETTINGS'] }}
{% endif %}
{% for key, value in config.raw.items('fava') | sort %} {% endfor %}
{{ _('Key') }} {{ _('Value') }}
{{ key }}
{{ value|trim }}

{{ _('beancount: options') }}

{{ _('For a detailed explanation of all possible option-values see the Beancount Options Reference, or more generally, the Beancount Documentation Overview.') }}

{% for key, value in api.options.items() | sort %} {% endfor %}
{{ _('Key') }} {{ _('Value') }}
{{ key }}
{{ value }}
{% endblock %}