{% include 'header.html' %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% endfor %}
{% endif %} {% endwith %}
{{ form.hidden_tag() }}
{{ _('File Uploads') }}
{{ form.filename(class="form-control", id="filename") }}
{{ _('Upload your CSV file containing the exported bank account history here.') }}
{{ form.config(class="form-control", id="config") }}
{{ _('Upload your configuration file here, or the default configuration will be used.') }}
{{ _('Filters') }}
{{ form.start_date(class="form-control", id="start_date") }}
{{ _('Filter results starting from this date.') }}
{{ form.end_date(class="form-control", id="end_date") }}
{{ _('Filter results up until this date.') }}
{{ form.filter(class="form-control", id="filter") }}
{{ _("Filter by category. (default = 'category')") }}
{{ _('Advanced settings') }}
{{ form.verbose(class="form-check-input", id="verbose") }}
{{ _("Enable detailed logging in the backend service's console.") }}
{{ form.no_currency_format(class="form-check-input", id="no_currency_format") }}
{{ _('Select this option to exclude currency symbols in the exported CSV. You can format the cells in your spreadsheet application instead.') }}