{% extends "./layout/default.twig" %} {% block breadcrumbs %} {{ Breadcrumbs.renderIfExists(Route.getCurrentRoute.getName) }} {% endblock %} {% block content %} {{ Form.open({'class' : 'form-horizontal','id' : 'preferences'}) }}

Home screen accounts

Which accounts should be displayed on the home page?

{% for account in accounts %}
{% endfor %}

Budget settings

What's the maximum amount of money a budget envelope may contain?

{{ ExpandedForm.amount('budgetMaximum',budgetMaximum,{'label' : 'Budget maximum'}) }}

View range

Some charts are automatically grouped in periods. What period would you prefer?

Languages

Firefly III supports several languages. Which one do you prefer?

{% for key, lang in Config.get('firefly.lang') %}
{% endfor %}
{{ Form.close|raw }} {% endblock %}