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

Options and Settings

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.

{% for key, value in config.user.items() | sort %} {% endfor %}
Key Value
{{ key }}
                {%- if key == "file_user" -%}
                    {{ value }}
                {%- else -%}
                    {{ value|trim }}
                {%- endif -%}
                

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 options.items() | sort %} {% endfor %}
Key Value
{{ key }}
{{ value }}
{% endblock %}